-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·37 lines (37 loc) · 1005 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "skills-kit-library",
"version": "2.0.1",
"description": "Boilerplate Box Skill Code Using Skills-Kit, Serverless, Eslint, Jest",
"author": "Box <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://developer.box.com/docs/box-skills",
"scripts": {
"test": "jest --coverage"
},
"dependencies": {
"box-node-sdk": "^1.24.1",
"clarifai": "^2.9.0",
"jest": "^22.4.3",
"jimp": "^0.5.4",
"lodash": "^4.17.10",
"moment": "^2.23.0",
"path": "^0.12.7",
"url-template": "^2.0.8"
},
"repository": {
"type": "git",
"url": "[email protected]:box/box-skills-kit-nodejs.git"
},
"jest": {
"verbose": true,
"testURL": "http://localhost",
"coverageThreshold": {
"global": {
"branches": 65,
"functions": 85,
"lines": 85,
"statements": 85
}
}
}
}