-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
68 lines (68 loc) · 1.53 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
68
{
"name": "dep",
"version": "0.18.3",
"description": "A little Node.js dependency installer",
"main": "index.js",
"scripts": {
"release": "standard-version",
"pretest": "standard \"lib/**/*.js\" \"bin/*.js\" \"test/*js\" \"scripts/*.js\"",
"test": "tap \"test/*.js\" --timeout 1000 --jobs=1",
"test-ci": "tap --coverage \"test/*.js\" --timeout 1000 --jobs=1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/depjs/dep.git"
},
"bin": {
"dep": "./bin/dep.js",
"depjs": "./bin/dep.js"
},
"keywords": [
"npm"
],
"author": "Daijiro Wachi",
"license": "MIT",
"bugs": {
"url": "https://github.com/depjs/dep/issues"
},
"homepage": "https://github.com/depjs/dep#readme",
"bundleDependencies": [
"fs-extra",
"gunzip-maybe",
"node-gyp",
"npm-package-arg",
"npm-path",
"promise-each",
"request",
"semver",
"tar-fs",
"tar-stream",
"update-notifier",
"which",
"yargs"
],
"dependencies": {
"fs-extra": "^9.0.1",
"gunzip-maybe": "^1.4.2",
"node-gyp": "^7.1.0",
"npm-package-arg": "^8.0.1",
"npm-path": "^2.0.4",
"promise-each": "^2.2.0",
"request": "^2.88.2",
"semver": "^7.3.2",
"tar-fs": "^2.1.0",
"tar-stream": "^2.1.4",
"update-notifier": "^4.1.1",
"which": "^2.0.2",
"yargs": "^16.0.3"
},
"devDependencies": {
"standard": "^14.3.1",
"standard-version": "^9.0.0",
"strong-npm-ls": "^1.0.10",
"tap": "^14.10.2"
},
"engine": {
"node": ">=10.0.0"
}
}