This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "dependency-land",
"version": "1.0.0",
"description": "Find the npm modules that depend on a specific module and semver range.",
"main": "server.js",
"scripts": {
"test": "standard",
"server": "node server.js",
"updater": "node db/updater.js",
"client": "node start-client.js",
"client-install": "npm install --prefix client/",
"client-build": "npm run build --prefix client/",
"postinstall": "npm run client-install && npm run client-build",
"start": "concurrently \"npm run server\" \"npm run client\"",
"prod-start": "concurrently \"npm run server\" \"npm run updater\"",
"track": "node track-release.js"
},
"private": true,
"author": "Vanja Cosic (https://twitter.com/vanjacosic)",
"license": "MIT",
"dependencies": {
"JSONStream": "^1.3.0",
"bluebird": "^3.4.6",
"boom": "^4.2.0",
"concurrently": "^3.1.0",
"dependency-db": "^5.1.4",
"dotenv": "^4.0.0",
"end-of-stream": "^1.1.0",
"good": "^7.0.2",
"good-console": "^6.2.0",
"good-squeeze": "^5.0.1",
"hapi": "^16.1.0",
"inert": "^4.0.2",
"joi": "^10.0.1",
"level-party": "^3.0.4",
"mkdirp": "^0.5.1",
"npm-dependency-db": "^6.0.8",
"opbeat": "^4.1.0",
"pumpify": "^1.3.5",
"readable-stream": "^2.2.2",
"semver": "^5.3.0",
"subleveldown": "^2.1.0",
"through2": "^2.0.3"
},
"devDependencies": {
"standard": "^9.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opbeat/dependency-land.git"
},
"bugs": {
"url": "https://github.com/opbeat/dependency-land/issues"
},
"homepage": "https://github.com/opbeat/dependency-land#readme",
"standard": {
"ignore": [
"client/build"
]
}
}