-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.68 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": "sync-npm-mirror",
"version": "1.0.0",
"license": "MIT",
"author": "champkeh",
"description": "自动同步npm淘宝镜像站上面的包",
"scripts": {
"dev": "ts-node src/cli.ts",
"format": "prettier --write --ignore-unknown --no-editorconfig .",
"lint": "eslint --fix .",
"build": "rimraf dist && tsc",
"prepublishOnly": "run-s format lint build",
"postpublish": "sync-npm-mirror sync-npm-mirror",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/champkeh/sync-npm-mirror.git"
},
"keywords": [
"sync",
"npm mirror",
"postpublish",
"sync npm mirror",
"npm mirror sync"
],
"main": "dist/index.js",
"bin": {
"sync-npm-mirror": "bin/sync-npm-mirror.js"
},
"files": [
"dist",
"bin",
"types"
],
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/champkeh/sync-npm-mirror/issues"
},
"homepage": "https://github.com/champkeh/sync-npm-mirror#readme",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/types": "^16.0.0",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"lint-staged": "^12.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"sync-npm-mirror": "^0.3.5",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.27.2",
"cac": "^6.7.12",
"ora": "5"
}
}