-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "olli-ces-poi-skill",
"version": "1.0.0",
"private": true,
"description": "Remote skill boilerplate using contarct v1",
"keywords": [
"skill"
],
"author": "your name",
"license": "Apache-2.0",
"main": "./index.js",
"dependencies": {
"axios": "^0.17.1",
"bluebird": "^3.4.1",
"cloudant": "^1.7.1",
"dotenv": "^4.0.0",
"express": "^4.12.3",
"http-status-codes": "^1.0.6",
"i18next": "^7.0.1",
"i18next-sprintf-postprocessor": "^0.2.2",
"inquirer": "3.0.6",
"morgan": "^1.8.1",
"nedb": "^1.8.0",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.1",
"watson-developer-cloud": "^2.4.3",
"winston": "^2.3.1",
"yamljs": "0.3.0"
},
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"should": "^7.1.0",
"supertest": "^1.0.0"
},
"scripts": {
"start": "node index.js",
"debug": "node $NODE_DEBUG_OPTION index.js",
"test": "mocha 'test/**/*.js' && ./node_modules/jscs/bin/jscs . && ./node_modules/jshint/bin/jshint ."
},
"engines": {
"node": "6.10.0"
}
}