-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 926 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
{
"name": "leetcode-javascript",
"version": "1.0.0",
"description": "我的 leetcode 记录",
"main": "index.js",
"author": "Dremy <[email protected]>",
"license": "MIT",
"repository": "https://github.com/DremyGit/leetcode-javascript",
"private": true,
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.7.0",
"eslint-config-google": "^0.10.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1"
},
"scripts": {
"precommit": "jest --coverage ./src",
"test": "jest ./src",
"lint": "eslint ./src --fix"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}