-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 1.42 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
58
59
60
61
62
63
64
65
66
67
{
"name": "can-npm-publish",
"version": "1.3.6",
"description": "A command line tool that check to see if `npm publish` is possible.",
"keywords": [
"cli",
"npm",
"publish"
],
"homepage": "https://github.com/azu/can-npm-publish",
"bugs": {
"url": "https://github.com/azu/can-npm-publish/issues"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"main": "lib/can-npm-publish.js",
"bin": {
"can-npm-publish": "./bin/cmd.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/can-npm-publish.git"
},
"scripts": {
"test": "mocha test",
"precommit": "lint-staged",
"postcommit": "git reset",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"extract-first-json": "^1.0.1",
"meow": "^9.0.0",
"read-pkg": "^5.0.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"prettier": "^2.3.1"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"volta": {
"node": "16.4.0",
"npm": "7.18.1"
}
}