-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "watsonwork-webhook-proxy",
"description": "Watson Work Webhook Proxy",
"license": "Apache-2.0",
"version": "0.0.1",
"files": [
".npmrc",
"src/"
],
"main": "src/app.js",
"bin": {
"echo": "src/app.js"
},
"scripts": {
"start": "node src/app.js",
"lint": "eslint src",
"clean": "rm -rf lib node_modules",
"build": "npm install && npm run lint",
"rebuild": "npm run clean && npm run build",
"cibuild": "npm run build"
},
"dependencies": {
"body-parser": "^1.15.2",
"client-oauth2": "^4.2.1",
"debug": "^4.0.0",
"escape-json-node": "^2.0.0",
"express": "^4.14.0",
"express-bearer-token": "^2.2.0",
"iso-639-1": "^2.0.3",
"jsesc": "^2.5.1",
"jsonwebtoken": "^8.3.0",
"pkgcloud": "^1.4.0",
"request": "^2.73.0",
"vcap_services": "^0.5.0",
"ws": "^6.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-ess": "^1.0.7",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"babel-preset-es2015": "^6.6.0"
},
"engines": {
"node": ">=8.11.0",
"npm": ">=3.10.8"
}
}