-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 KB
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
{
"name": "dbm",
"version": "1.0.0",
"description": "Node.js dependency bundle manager",
"bin": {
"dbm-cli": "bin/dbm-cli.js"
},
"scripts": {
"install": "scripts/install.js",
"uninstall": "scripts/uninstall.js",
"cover": "nyc --reporter=lcov npm test && nyc report",
"coverage": "npm run cover",
"lint": "eslint lib bin/*js test",
"pretest": "npm run lint",
"test": "mocha test --recursive --reporter=spec"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sumeetkakkar/dbm.git"
},
"keywords": [
"Node.js",
"dependency",
"bundle",
"manager",
"packages"
],
"author": "sumeetkakkar",
"license": "ISC",
"bugs": {
"url": "https://github.com/sumeetkakkar/dbm/issues"
},
"homepage": "https://github.com/sumeetkakkar/dbm#readme",
"dependencies": {
"commander": "^7.2.0",
"find-up": "^5.0.0",
"ini": "^2.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"eslint": "^7.32.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"tar": "^6.1.0"
}
}