-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"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": "Joshua B. Smith",
"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"
},
"engines": {
"node": ">=4.x",
"npm": ">=3.x"
},
"scripts": {
"start": "node server.js",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/unit",
"test-integration": "casperjs test ./test/test.*.js",
"test-integration-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-integration-runner",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)",
"validate": "npm ls"
},
"dependencies": {
"async": "^2.1.4",
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babelify": "^7.3.0",
"body-parser": "^1.16.0",
"cf-deployment-tracker-client": "0.1.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-browserify": "^1.0.2",
"express-rate-limit": "^2.6.0",
"express-status-monitor": "^0.1.9",
"extend": "^3.0.0",
"helmet": "^3.4.0",
"jade": "^1.11.0",
"jpath-query": "^0.1.1",
"jquery-ui": "^1.12.1",
"morgan": "^1.7.0",
"multer": "^1.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"uglifyify": "^3.0.4",
"uuid": "^3.0.1",
"watson-developer-cloud": "^2.15.2"
},
"devDependencies": {
"casperjs": "^1.1.3",
"codecov": "^1.0.1",
"combinations": "^0.1.1",
"eslint": "^3.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"precommit-hook": "^3.0.0",
"supertest": "^2.0.1"
},
"pre-commit": [
"lint",
"validate"
]
}