forked from germanattanasio/visual-recognition-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "VisualRecognition",
"version": "3.0.0",
"description": "A Visual Recognition sample nodejs application",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/visual-recognition-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "James Zhang",
"email": "[email protected]"
},
{
"name": "Eva Xiaohui Luo",
"email": "[email protected]"
},
{
"name": "German Attanasio Ruiz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/visual-recognition-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"dev": "gulp",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"dependencies": {
"archiver": "^1.0.0",
"async": "^2.0.0-rc.5",
"body-parser": "^1.15.1",
"cf-deployment-tracker-client": "0.0.8",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-rate-limit": "^2.3.1",
"extend": "^3.0.0",
"find-remove": "^0.2.11",
"helmet": "^2.1.0",
"jade": "^1.11.0",
"multer": "^1.1.0",
"request": "^2.72.0",
"uuid": "^2.0.2",
"validator": "^5.2.0",
"watson-developer-cloud": "git+https://github.com/watson-developer-cloud/node-sdk#visual-recognition"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"codecov": "^1.0.1",
"eslint-config-airbnb-es5": "^1.0.9",
"eslint-plugin-react": "^5.1.1",
"eslint": "^2.8.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
}
}