-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "narn",
"version": "2.3.0",
"main": "lib/narn-lib.js",
"bin": {
"narn": "bin/narn.js",
"narnx": "bin/narnx.js"
},
"repository": "[email protected]:joeldenning/narn.git",
"author": "Joel Denning <[email protected]>",
"homepage": "https://github.com/joeldenning/narn",
"license": "MIT",
"scripts": {
"test": "concurrently \"pnpm:test:*\"",
"test:jest": "jest --env=node",
"test:lockfile": "js-correct-lockfile pnpm",
"format": "prettier . --write",
"check-format": "prettier . --check",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"bin",
"lib"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"concurrently": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"js-correct-lockfile": "^1.0.0",
"pinst": "^3.0.0",
"prettier": "^2.6.0",
"pretty-quick": "^3.1.3"
},
"dependencies": {
"minimist": "^1.2.5",
"validate-npm-package-name": "^3.0.0"
}
}