-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.71 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": "natural-language-understanding-nodejs",
"version": "0.0.1",
"description": "A sample Node.js app for Bluemix that use the IBM Watson Natural Language Understanding service",
"repository": {
"type": "git",
"url": "https://github.com/watson-developer-cloud/natural-language-understanding-nodejs.git"
},
"engines": {
"node": ">=6.0",
"npm": ">=4.0"
},
"author": "IBM Corp.",
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/watson-developer-cloud/natural-language-understanding-nodejs/issues"
},
"scripts": {
"start": "node server.js",
"test-integration": "casperjs test ./test/integration/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",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha test/unit",
"lint": "eslint .",
"autofix": "eslint --fix .",
"codecov": "npm run test && (codecov || true)"
},
"dependencies": {
"aphrodite": "^1.2.5",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"body-parser": "^1.18.2",
"cf-deployment-tracker-client": "^0.1.4",
"css-math": "^0.4.0",
"deep-assign": "^2.0.0",
"dotenv": "^4.0.0",
"es6-promise": "^4.2.2",
"express": "^4.15.5",
"express-browserify": "^1.0.2",
"express-rate-limit": "^2.11.0",
"express-react-views": "^0.10.5",
"express-secure-only": "^0.2.1",
"helmet": "^3.9.0",
"html-to-react": "^1.3.3",
"isomorphic-fetch": "^2.2.1",
"language-list": "0.0.3",
"map-range": "^0.1.2",
"numeral": "^2.0.6",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-waypoint": "^7.3.4",
"scroll-to-element": "^2.0.0",
"tween": "^0.9.0",
"uglifyify": "^4.0.5",
"valid-url": "^1.0.9",
"watson-developer-cloud": "^2.42.0",
"watson-react-components": "^0.6.16",
"watson-ui-components": "^0.6.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"casperjs": "^1.1.4",
"codecov": "^2.3.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nock": "^9.1.6",
"phantomjs-prebuilt": "^2.1.16",
"supertest": "^3.0.0"
}
}