-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 922 Bytes
/
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
{
"name": "hlj",
"version": "0.5.0",
"description": "The fastest TDD for JavaScript world, made by Chinese software craftsman.",
"main": "src/hlj.js",
"scripts": {
"test": "node src/hlj.js test",
"check": "node ops/pipelineCheck.js test",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/codingstyle-cn/hlj.git"
},
"bugs": {
"url": "https://github.com/codingstyle-cn/hlj/issues"
},
"homepage": "https://github.com/codingstyle-cn/hlj",
"keywords": [
"TDD",
"Jest",
"Mocha",
"JavaScript unit test"
],
"bin": {
"hlj": "./src/hlj.js"
},
"author": "CodingStyle.cn",
"license": "MIT",
"devDependencies": {
"eslint": "^7.23.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}