forked from nodecg/nodecg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.98 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nodecg",
"description": "Dynamic broadcast graphics rendered in a browser",
"main": "index.js",
"version": "0.8.6",
"repository": {
"type": "git",
"url": "https://github.com/nodecg/nodecg.git"
},
"bugs": "https://github.com/nodecg/nodecg/issues",
"license": "MIT",
"dependencies": {
"@nodecg/bundle-manager": "^0.5.1",
"@nodecg/logger": "^0.2.0",
"body-parser": "^1.14.1",
"cheerio": "^0.22.0",
"chokidar": "^1.4.2",
"clone": "^2.0.0",
"compression": "^1.6.0",
"cookie-parser": "^1.4.1",
"deep-equal": "^1.0.1",
"express": "^4.13.3",
"express-nedb-session": "^0.1.1",
"express-session": "^1.11.3",
"extend": "^3.0.0",
"httpolyglot": "^0.1.1",
"is-my-json-valid": "^2.12.3",
"jade": "^1.11.0",
"json-schema-defaults": "^0.3.0",
"minimist": "^1.2.0",
"multer": "^1.1.0",
"nedb": "^1.2.1",
"node-localstorage": "^1.3.0",
"object-path": "^0.11.1",
"parse-authors": "^0.2.2",
"passport": "^0.3.2",
"passport-steam": "^1.0.2",
"passport-twitch": "^1.0.2",
"request": "^2.64.0",
"rollbar": "^0.6.0",
"semver": "^5.0.3",
"serve-favicon": "^2.3.2",
"sha1": "^1.1.1",
"sha1-file": "^1.0.0",
"socket.io": "^1.4.5",
"uuid": "^3.0.0"
},
"scripts": {
"start": "node index.js",
"pretest": "npm run build && node test/setup/pretest",
"test": "istanbul cover -x \"bundles/**\" -x \"test/**\" ./node_modules/mocha/bin/_mocha -- -R spec",
"posttest": "node test/setup/posttest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf coverage",
"static": "eslint index.js lib/**/*.js test/**/*.js",
"build": "npm run static && npm run docs:build && npm run build:css && grunt",
"build:css": "lessc lib/dashboard/src/dashboard.less lib/dashboard/public/dashboard.css && lessc lib/dashboard/src/nodecg-defaults.less lib/dashboard/public/style/nodecg-defaults.css",
"docs": "npm run docs:build && npm run docs:publish",
"docs:build": "rimraf docs && jsdoc -c .jsdoc.json",
"docs:publish": "npm run docs:build && echo nodecg.com >> docs/CNAME && gh-pages -d docs -s **",
"release": "standard-version"
},
"engines": {
"node": ">= 4.1.2"
},
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"bower.json",
"index.js",
"lib/"
],
"devDependencies": {
"aliasify": "^2.0.0",
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.2.0",
"brfs": "^1.4.1",
"chai": "^3.5.0",
"coveralls": "^2.11.2",
"eslint": "^3.11.1",
"eslint-config-xo": "^0.17.0",
"fs.extra": "^1.3.2",
"gh-pages": "^0.12.0",
"grunt": "^1.0.0",
"grunt-browserify": "^5.0.0",
"istanbul": "^0.4.1",
"jsdoc": "^3.4.0",
"less": "^2.7.0",
"load-grunt-tasks": "^3.4.0",
"minami": "github:nodecg/minami",
"minifyify": "^7.1.0",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "1.2.0",
"standard-version": "^4.0.0",
"webdriverio": "^4.0.3"
}
}