-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mkbugjs",
"version": "1.5.5",
"description": "An OOP style declare Nodejs Web framework base on Express.js",
"main": "index.js",
"scripts": {
"init": "npm i express chalk jest superagent",
"test": "(nohup node test/init.js &) && jest && curl http://localhost:3000/close",
"prepare": "husky install",
"eslint": "eslint . --ext .js",
"eslint:fix": "eslint --fix . --ext .js",
"prettier:fix": "prettier . .prettierrc --write",
"jest": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkbug-com/mkbug.js.git"
},
"files": [
"index.js",
"package.json",
"LICENSE",
"README.md",
"bin"
],
"keywords": [
"Nodejs",
"OOP",
"expressjs",
"restfull",
"js"
],
"author": "ryouaki (46517115@qq.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mkbug-com/mkbug.js/issues"
},
"homepage": "https://github.com/mkbug-com/mkbug.js#readme",
"peerDependencies": {
"chalk": "^4.0.0",
"express": "^4.1.1"
},
"devDependencies": {
"commitlint": "^13.1.0",
"@commitlint/config-conventional": "^12.1.4",
"babel-eslint": "^10.0.3",
"chalk": "^4.1.1",
"cookie-parser": "^1.4.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lint-staged": "^9.5.0",
"prettier": "2.3.2",
"prettier-eslint": "^13.0.0",
"superagent": "^5.3.1"
},
"lint-staged": {
"bin/*.{js}": [
"prettier --write",
"eslint --cache --fix"
]
}
}