-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 932 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
39
40
41
42
{
"name": "bad-package-manager",
"version": "0.1.0",
"description": "A bad package manager",
"author": "Ian Sutherland <[email protected]>",
"license": "MIT",
"type": "module",
"bin": {
"bad": "bin/bad.js"
},
"engines": {
"node": ">=18.3.0",
"npm": ">=8.0.0"
},
"scripts": {
"start": "node bin/bad.js",
"bad": "node bin/bad.js",
"test": "node --test",
"lint": "eslint \"**/*.js\"",
"format": "prettier --write \"**/*.{js,json,yaml,yml,md}\"",
"format:check": "prettier --check \"**/*.{js,json,yaml,yml,md}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{js,json,yaml,yml,md}": [
"prettier --write"
]
},
"dependencies": {
"tar": "^6.1.11"
},
"devDependencies": {
"debug": "^4.3.4",
"eslint": "^8.17.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2"
}
}