-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.01 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
68
69
70
71
72
73
74
{
"name": "nucm",
"version": "1.11.1",
"description": "NPM User Change Manager(NPM 用户账号切换管理)",
"main": "./bin/index.js",
"scripts": {
"release": "npm run build && npm run push:coverage && standard-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "jest",
"test:coverage": "jest --coverage",
"push:coverage": "npm run test:coverage && git add . && git commit -m 'chroe: test coverage ci'",
"dev": "rimraf dist && rollup -c scripts/rollup.config.dev.js -w",
"build": "rimraf dist && rollup -c scripts/rollup.config.build.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"bin": {
"nucm": "./bin/index.js"
},
"files": [
"bin",
"dist"
],
"homepage": "https://beezen.github.io/nucm/",
"repository": {
"type": "git",
"url": "[email protected]:beezen/nucm.git"
},
"author": "beezen",
"keywords": [
"nucm",
"npm",
"nrm",
"access tokens",
"publish",
"user change",
"token",
"account",
"manager"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.9",
"colors": "^1.4.0",
"commander": "^11.1.0",
"fs-extra": "^10.0.0",
"i18next": "^23.7.16",
"ini": "^2.0.0",
"inquirer": "^8.2.0",
"nrm": "^1.2.6",
"os": "^0.1.2",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.11",
"babel-jest": "^29.7.0",
"conventional-changelog-cli": "^2.2.2",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"rollup-plugin-node-externals": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vuepress": "^1.9.10"
}
}