-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "homeworks",
"version": "1.0.0",
"description": "1. 2017-11-14 (熟悉node.js模块化机制) a. Fibonacci 数组实现通过node.js模块输出 b. 汉诺塔移动信息通过node.js以数组形式输出",
"main": "index.js",
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-session": "^1.15.6",
"jade": "^1.11.0",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"nunjucks": "^3.0.1"
},
"devDependencies": {
"@ljharb/eslint-config": "github:ljharb/eslint-config",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"supertest": "^3.0.0"
},
"scripts": {
"test": "bash test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rugao-web-fullstack/homeworks.git"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/*.test.js",
"test"
]
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rugao-web-fullstack/homeworks/issues"
},
"homepage": "https://github.com/rugao-web-fullstack/homeworks#readme"
}