-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "js-checktype",
"version": "1.0.0",
"description": "类型检测",
"main": "src/index.js",
"scripts": {
"test:jest": "jest ",
"test:report": "jest --coverage --coverageDirectory=testreport",
"test-reportone": "jest --testResultsProcessor=jest-stare ",
"test:docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"test": "jest --coverage --coverageDirectory=testreport --testResultsProcessor=jest-stare ",
"eslint": "eslint --fix --ext .js src",
"prettier": "prettier --write"
},
"pre-commit": {
"run": "eslint"
},
"repository": {
"type": "git",
"url": "git@github.com:Silence520/checktype.git"
},
"keywords": ["javascript"],
"author": "silenceli",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@~lisfan/validation": "^1.0.4",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^23.6.0",
"docdash": "^1.0.3",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.7.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"x-type-check": "0.0.1"
},
"dependencies": {
"jest-stare": "^1.16.0"
},
"jest-stare": {
"resultDir": "testreport/report",
"resultJson": "data.json",
"resultHtml": "index.html",
"coverageLink": "../lcov-report/index.html"
}
}