-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.63 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
54
55
56
57
{
"name": "leetcode-js",
"version": "0.4.0",
"description": "my leetcode solutions in javaScript",
"scripts": {
"do": "node cli.js",
"lint": "eslint src/*/**.js",
"nice": "prettier --config ./.prettierrc src/*/**.js --write",
"test": "jest",
"test:watch": "jest --watch",
"test:codecov": "jest --coverage && codecov -t 009a0b3d-f46f-4bab-9bc7-e3bb0b72ae5e",
"bench": "node test/spec/1.twoSum.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Williammer/leetcode.git"
},
"keywords": [
"data structure",
"algorithm",
"leetcode",
"javaScript"
],
"author": "WilliamHe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Williammer/leetcode/issues"
},
"homepage": "https://github.com/Williammer/leetcode",
"devDependencies": {
"babel-preset-env": "^1.7.0",
"benchmark": "^2.1.4",
"codecov": "^3.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.1",
"eslint-plugin-prettier": "^3.0.1",
"fs-extra": "^7.0.1",
"jest": "^23.6.0",
"jest-html-reporter": "^2.4.3",
"prettier": "^1.16.3",
"stryker": "^0.34.0",
"stryker-api": "^0.23.0",
"stryker-babel-transpiler": "^0.8.0",
"stryker-baseline-reporter": "^1.0.3",
"stryker-html-reporter": "^0.17.0",
"stryker-javascript-mutator": "^0.13.0",
"stryker-jest-runner": "^1.3.0"
},
"jest-html-reporter": {
"pageTitle": "leetcode-js test suite",
"outputPath": "__testReport__.html",
"includeFailureMsg": true
}
}