-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.1 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": "npack",
"version": "5.0.0",
"description": "Node.js packages manipulation scripts",
"keywords": [
"package",
"packages",
"install",
"update",
"manipulation",
"manager",
"npm"
],
"main": "./lib/npack.js",
"bin": {
"npack": "./bin/npack"
},
"scripts": {
"test": "mocha --bail --reporter spec --timeout 60000",
"lint": "jshint ./"
},
"repository": {
"type": "git",
"url": "https://github.com/2do2go/npack.git"
},
"author": "2do2go team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/2do2go/npack/issues"
},
"homepage": "https://github.com/2do2go/npack",
"devDependencies": {
"chai": "4.2.0",
"expect.js": "0.3.1",
"jshint": "2.10.2",
"mocha": "5.2.0",
"node-static": "0.7.11"
},
"dependencies": {
"colors": "1.3.3",
"commander": "3.0.0",
"fs-extra": "5.0.0",
"moment": "2.24.0",
"npm-package-arg": "6.1.1",
"read": "1.0.7",
"semver": "6.3.0",
"shell-quote": "1.7.1",
"tar": "4.4.10",
"twostep": "0.4.2",
"underscore": "1.9.1"
}
}