forked from zautumnz/js-drills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 898 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 898 Bytes
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
{
"name": "js-drills",
"description": "Small code challenges.",
"version": "0.0.1",
"private": true,
"author": "Autumn Z",
"license": "0BSD",
"main": "index.js",
"scripts": {
"format": "sortpack && prettier --write \"**/*.js\"",
"test:lint": "eslint -c .eslintrc.json ."
},
"homepage": "https://github.com/zautumnz/js-drills#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zautumnz/js-drills.git"
},
"bugs": {
"url": "https://github.com/zautumnz/js-drills/issues"
},
"keywords": [],
"devDependencies": {
"eslint": "7.15.0",
"husky": "4.3.5",
"lint-staged": "10.5.3",
"prettier": "2.2.1",
"sortpack": "2.1.11"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"package.json": [
"sortpack"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}