-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "mini-nrm",
"version": "1.1.0",
"description": "Mini npm registry manager",
"main": "dist/src/main.js",
"scripts": {
"dev": "ts-node src/cli.ts",
"build": "tsc",
"test": "mocha",
"lint": "eslint src && prettier --check src",
"lint:fix": "eslint --fix src && prettier --check --write src"
},
"bin": {
"mnrm": "dist/src/cli.js",
"mimi-nrm": "dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CreateWheel/mini-nrm.git"
},
"keywords": [
"npm",
"registry",
"toggle",
"manager",
"mirror"
],
"files": [
"dist"
],
"author": "Lete <[email protected]> (https://www.imlete.cn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CreateWheel/mini-nrm/issues"
},
"homepage": "https://github.com/CreateWheel/mini-nrm#readme",
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.26.0",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}