This repository was archived by the owner on Jul 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "@nodecg/bundle-manager",
"version": "0.5.7",
"description": "NodeCG's internal runtime memory store of bundles",
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"scripts": {
"static": "eslint index.js lib/**/*.js test/**/*.js",
"test": "npm run static && istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf coverage"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/nodecg/bundle-manager.git"
},
"keywords": [
"nodecg",
"bundle",
"manager"
],
"author": "Alex Van Camp <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodecg/bundle-manager/issues"
},
"homepage": "https://github.com/nodecg/bundle-manager#readme",
"devDependencies": {
"@nodecg/logger": "^0.2.0",
"chai": "^4.0.1",
"coveralls": "^2.11.6",
"eslint": "^4.4.0",
"eslint-config-xo": "^0.18.2",
"istanbul": "^0.4.1",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.0.0",
"rimraf": "^2.4.4",
"wrench": "^1.5.8"
},
"dependencies": {
"bluebird": "^3.4.6",
"bower": "^1.7.1",
"chokidar": "^1.7.0",
"cross-spawn": "^5.1.0",
"extend": "^3.0.0",
"fs.extra": "^1.3.2",
"nodecg-bundle-parser": "^0.3.4",
"npm-path": "^2.0.2",
"q": "^1.4.1",
"semver": "^5.1.0"
},
"engines": {
"node": ">=6.0.0"
}
}