-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 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
{
"name": "@rc-component/np",
"version": "1.0.3",
"description": "publish tools for version bumping and changelog generation",
"keywords": [
"publish"
],
"homepage": "http://github.com/react-component/np",
"bugs": {
"url": "http://github.com/react-component/np/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:react-component/np.git"
},
"license": "MIT",
"author": {
"name": "[email protected]"
},
"main": "./lib/index",
"module": "./es/index",
"typings": "es/index.d.ts",
"bin": {
"rc-np": "./bin/np.mjs"
},
"files": [
"lib",
"es"
],
"scripts": {
"compile": "father build",
"prepublishOnly": "npm run compile",
"test": "npm run compile && npm run test:only",
"test:only": "node ./bin/np.mjs"
},
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"babel-jest": "^29.7.0",
"chalk": "^4.1.2",
"escape-goat": "^4.0.0",
"fs-extra": "^10.1.0",
"jest": "^29.2.1",
"open": "^10.1.0",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.0",
"@types/node": "^22.7.5",
"eslint": "^7.18.0",
"father": "^4.0.0",
"prettier": "^2.1.2",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.x"
},
"type": "module"
}