-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "role-model",
"version": "2.0.0",
"description": "Robot on LeanEngine",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha --use_strict",
"lint": "node node_modules/eslint/bin/eslint.js .",
"check": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hjiang/role-model.git"
},
"keywords": [
"chat",
"robot"
],
"author": "Hong Jiang <j@1byte.io> (http://1byte.io)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hjiang/role-model/issues"
},
"homepage": "https://github.com/hjiang/role-model#readme",
"dependencies": {
"body-parser": "^1.15.1",
"express": "^4.13.4",
"leanengine": "^3.2.0",
"leancloud-storage": "^3.10.0",
"needle": "^2.2.1"
},
"devDependencies": {
"chai": "chaijs/chai#6611e1a",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-react": "^7.8.2",
"mocha": "^5.2.0"
},
"engines": {
"node": ">=4.0.0"
}
}