-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "nuk",
"version": "2.0.1",
"description": "A package manager that installs only what you need.",
"main": "index.js",
"bin": {
"nuk": "src/nuk.js"
},
"scripts": {
"version:major": "npm version major",
"version:minor": "npm version minor",
"version:patch": "npm version patch",
"postversion": "npm publish && git push && git push --tags",
"test": "mocha test",
"install-global": "npm install -g"
},
"mocha": {
"timeout": 0
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabioricali/nuk.git"
},
"keywords": [
"nuk",
"package manager",
"cli"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/fabioricali/nuk/issues"
},
"homepage": "https://github.com/fabioricali/nuk#readme",
"dependencies": {
"axios": "^1.7.7",
"chalk": "^2.4.1",
"clear": "^0.1.0",
"commander": "^5.1.0",
"concat": "^1.0.3",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"figlet": "^1.2.0",
"fs-extra": "^7.0.0",
"readdirp": "^3.4.0",
"replace-in-file": "^6.0.0",
"string.prototype.matchall": "^4.0.2"
},
"devDependencies": {
"mocha": "^10.7.3"
}
}