-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.12 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
{
"name": "alchemy-language-demo",
"version": "0.2.5",
"description": "A sample nodejs app for Bluemix that showcase the AlchemyLanguage service",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/alchemylanguage-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "Alex Meyer",
"email": "alexmeyer@us.ibm.com"
},
{
"name": "Eva Xiaohui Luo",
"email": "evaluo_xhl@us.ibm.com"
},
{
"name": "German Attanasio Ruiz",
"email": "germanatt@us.ibm.com"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/alchemylanguage-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"build": "gulp compile",
"postinstall": "npm run build",
"dev": "gulp",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)",
"validate": "npm ls"
},
"dependencies": {
"body-parser": "^1.13.2",
"cf-deployment-tracker-client": "0.0.8",
"cookie-parser": "^1.4.1",
"csurf": "^1.8.3",
"dotenv": "^2.0.0",
"ejs": "^2.3.4",
"express": "^4.12.2",
"express-rate-limit": "^2.1.0",
"express-secure-only": "^0.2.1",
"glob": "^7.0.3",
"helmet": "^2.1.0",
"morgan": "^1.7.0",
"precommit-hook": "^3.0.0",
"request": "^2.72.0",
"watson-developer-cloud": "^2.4.3"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"browser-sync": "^2.9.9",
"codecov": "^1.0.1",
"eslint-config-airbnb-es5": "^1.0.9",
"eslint-plugin-react": "^5.1.1",
"eslint": "^2.8.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-concat": "^2.6.0",
"gulp-iconfont-css": "2.1.0",
"gulp-iconfont": "^8.0.0",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.1",
"gulp-sass": "^2.0.4",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"run-sequence": "^1.1.5",
"supertest": "^1.2.0"
},
"engines": {
"node": "^6.5.0"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}