-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
149 lines (149 loc) · 3.99 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "nodecg",
"description": "Dynamic broadcast graphics rendered in a browser",
"main": "index.js",
"bin": "index.js",
"version": "0.9.9",
"repository": {
"type": "git",
"url": "https://github.com/nodecg/nodecg.git"
},
"bugs": "https://github.com/nodecg/nodecg/issues",
"homepage": "http://nodecg.com/",
"license": "MIT",
"keywords": [
"graphics",
"nodecg",
"node",
"dynamic",
"broadcast"
],
"dependencies": {
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"chokidar": "^1.7.0",
"clone": "^2.1.1",
"compression": "^1.7.1",
"convict": "^4.0.2",
"cookie-parser": "^1.4.3",
"deep-equal": "^1.0.1",
"express": "^4.16.2",
"express-nedb-session": "^0.1.1",
"express-session": "^1.15.6",
"extend": "^3.0.1",
"fs-extra": "^5.0.0",
"fs.extra": "^1.3.2",
"git-rev-sync": "^1.9.1",
"httpolyglot": "^0.1.2",
"is-error": "^2.2.1",
"is-my-json-valid": "^2.16.1",
"json-ptr": "^1.0.1",
"json-schema-defaults": "^0.3.0",
"json-schema-lib": "github:Lange/json-schema-lib#ac59fe29fad5c54647e4c483c7255a923cc430dd",
"lodash.debounce": "^4.0.8",
"make-fetch-happen": "^2.6.0",
"minimist": "^1.2.0",
"multer": "^1.3.0",
"nedb": "^1.8.0",
"node-localstorage": "^1.3.0",
"object-path": "^0.11.4",
"parse-authors": "^0.2.4",
"passport": "^0.4.0",
"passport-steam": "^1.0.8",
"passport-twitch": "^1.0.3",
"pug": "^2.0.0-rc.4",
"raven": "^2.2.1",
"semver": "^5.4.1",
"serialize-error": "^2.1.0",
"sha1": "^1.1.1",
"sha1-file": "^1.0.0",
"socket.io": "^2.0.4",
"temp": "^0.8.3",
"tv4": "^1.3.0",
"uuid": "^3.1.0",
"winston": "^2.4.0"
},
"scripts": {
"start": "node index.js",
"pretest": "npm run build && npm run instrument",
"test": "nyc ava test --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"static": "eslint index.js lib/**/*.js src/**/*.js test/**/*.js",
"build": "npm run static && npm run docs:build && gulp",
"instrument": "nyc instrument ./src ./instrumented",
"docs": "npm run docs:build && npm run docs:publish",
"docs:build": "rimraf docs && jsdoc -c .jsdoc.json && node scripts/readme-toc.js",
"docs:publish": "npm run docs:build && echo nodecg.com >> docs/CNAME && gh-pages -d docs -s **",
"prerelease": "npm t",
"release": "standard-version",
"postrelease": "npm publish && git push --follow-tags && npm run docs:publish"
},
"nyc": {
"include": [
"lib/**",
"index.js"
],
"all": true
},
"engines": {
"node": ">= 4.1.2"
},
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"bower.json",
"index.js",
"lib/"
],
"pkg": {
"assets": [
"bower_components/**/*",
"src/**/*",
"build/**/*",
"bundles/**/*"
]
},
"devDependencies": {
"aliasify": "^2.1.0",
"ava": "^0.24.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-es2015-nostrict": "^6.6.2",
"babel-preset-minify": "^0.2.0",
"babelify": "^8.0.0",
"brfs": "^1.4.3",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"eslint": "^4.10.0",
"eslint-config-xo": "^0.19.0",
"eslint-plugin-ava": "^4.2.2",
"exorcist": "^1.0.0",
"gh-pages": "^1.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean-css": "^3.9.0",
"gulp-htmlmin": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^4.0.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-util": "^3.0.8",
"is-windows": "^1.0.1",
"jsdoc": "^3.5.5",
"merge-stream": "^1.0.1",
"minami": "github:nodecg/minami",
"nyc": "^11.3.0",
"polymer-build": "^2.1.1",
"remark": "^8.0.0",
"remark-toc": "^5.0.0",
"rimraf": "^2.6.2",
"sinon": "^4.1.2",
"standard-version": "^4.2.0",
"taffydb": "^2.7.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"vinyl-transform": "^1.0.0",
"webdriverio": "^4.8.0"
}
}