-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 993 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
{
"name": "leetcode",
"version": "0.0.1",
"description": "Leetcode solution with tests using latest JavaScript version",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/zhenyi2697/leetcode-js.git"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "node_modules/.bin/eslint \"./leetcode/**/*.js\"",
"prettier": "node_modules/.bin/prettier --config ./.prettierrc --write \"./leetcode/**/*.js\"",
"prettier-check": "node_modules/.bin/prettier --config ./.prettierrc --list-different \"./leetcode/**/*.js\"",
"gr": "node ./generate-readme.js"
},
"author": "zhenyi2697",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.13.0",
"jest": "^24.0.0",
"prettier": "^1.16.4"
}
}