-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "npmmirror-quick",
"version": "1.0.0",
"author": "fz6m",
"description": "Update npm registry to new Taobao(npmmirror) registry quick tools",
"main": "dist/index.js",
"bin": {
"nq": "bin/nq.js"
},
"files": [
"dist",
"bin"
],
"homepage": "https://github.com/fz6m/npmmirror-quick#README",
"repository": {
"type": "git",
"url": "https://github.com/fz6m/npmmirror-quick"
},
"scripts": {
"test": "node ./bin/nq.js",
"build": "rimraf dist && tsc",
"release": "npm publish --registry=https://registry.npmjs.com/",
"prepublishOnly": "pnpm build",
"test:i": "npm_config_registry=http://localhost:4873/ yarn global add npmmirror-quick",
"test:uni": "yarn global remove npmmirror-quick"
},
"keywords": [
"npm",
"taobao",
"npm-registry",
"taobao-registry",
"npmmirror",
"npmmirror-registry"
],
"dependencies": {
"@manypkg/get-packages": "^1.1.3",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"configstore": "^5.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"ini": "^2.0.0"
},
"devDependencies": {
"@fz6m/eslint-plugin-sakina": "^1.0.6",
"@types/configstore": "^5.0.1",
"@types/fs-extra": "^9.0.13",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}