-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.64 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.64 KB
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
{
"name": "document-conversion-demo",
"version": "0.3.0",
"description": "A sample nodejs app for Bluemix that use the Document Conversion service",
"engines": {
"node": ">=4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/document-conversion-nodejs.git"
},
"author": "IBM Corp.",
"contributors": [
{
"name": "James Zhang",
"email": "jzhang300@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/document-conversion-nodejs/issues"
},
"dependencies": {
"body-parser": "~1.15.1",
"cf-deployment-tracker-client": "0.1.1",
"cookie-parser": "^1.4.0",
"csurf": "^1.9.0",
"dotenv": "^2.0.0",
"ejs": "^2.4.2",
"express": "~4.13.4",
"express-rate-limit": "^2.3.1",
"express-secure-only": "^0.2.1",
"find-remove": "^0.2.8",
"helmet": "^2.1.1",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"watson-developer-cloud": "^1.1.0"
},
"scripts": {
"start": "node server.js",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"codecov": "^1.0.1",
"eslint": "^2.8.0",
"eslint-config-airbnb-es5": "^1.0.9",
"eslint-plugin-react": "^5.1.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
}
}