This repository has been archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 351
/
package.json
95 lines (95 loc) · 2.46 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
92
93
94
95
{
"name": "@ibm-watson/visual-recognition-nodejs",
"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.",
"private": true,
"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": ">=8.x",
"npm": ">=6.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"start": "node server.js",
"test-unit": "jest ./test/unit --coverage --forceExit",
"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.6.2",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"csurf": "^1.9.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-browserify": "^1.0.2",
"express-rate-limit": "^3.3.2",
"extend": "^3.0.2",
"helmet": "^3.15.1",
"jade": "^1.11.0",
"jpath-query": "^0.1.1",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"request": "^2.88.0",
"uglifyify": "^5.0.1",
"uuid": "^3.3.2",
"vcap_services": "^0.6.0",
"watson-developer-cloud": "^3.18.1"
},
"devDependencies": {
"casperjs": "^1.1.4",
"codecov": "^3.2.0",
"combinations": "^0.1.1",
"eslint": "^5.14.0",
"istanbul": "^0.4.5",
"jest": "^24.1.0",
"mocha": "^5.2.0",
"phantomjs-prebuilt": "^2.1.16",
"precommit-hook": "^3.0.0",
"supertest": "^3.4.2"
},
"pre-commit": [
"lint"
]
}