-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "node-cors",
"version": "1.0.0",
"description": "node 实现跨域资源共享(CORS)的案例",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwb1994/node-cors.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwb1994/node-cors/issues"
},
"homepage": "https://github.com/dwb1994/node-cors#readme",
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"koa": "^2.5.3",
"koa-static": "^5.0.0"
},
"devDependencies": {
"ghooks": "^2.0.4",
"koa2-cors": "^2.0.6",
"validate-commit-msg": "^2.14.0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"test",
"chore",
"refactor",
"opti"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "请输入message信息!",
"helpMessage": "Commit message 格式错误, \n请查看规范: http://dwbbb.com/blog/Git-Commit-Message/"
}
}
}