-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.55 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.55 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
48
{
"name": "html5-video-compositor",
"version": " 0.9.3",
"description": "A HTML5 based video composition engine",
"keywords": [
"html5",
"video",
"video composition",
"webgl"
],
"bugs": {
"url": "https://github.com/bbc/html5-video-compositor/issues"
},
"license": {
"license": "Apache-2.0"
},
"browser": "./src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/bbc/html5-video-compositor"
},
"contributors": [
{
"name": "Matthew Shotton",
"email": "matthew.shotton@bbc.co.uk"
},
{
"name": "Max Leonard",
"email": "max.leonard@bbc.co.uk"
}
],
"scripts": {
"build_all": "node ./node_modules/webpack/bin/webpack.js --optimize-minimize --config webpack.config.js && node ./node_modules/webpack/bin/webpack.js --config webpack.commonjs2.config.js && node ./node_modules/esdoc/out/src/ESDocCLI.js -c esdoc.json",
"doc": "node ./node_modules/esdoc/out/src/ESDocCLI.js -c esdoc.json",
"build": "node ./node_modules/webpack/bin/webpack.js --optimize-minimize --config webpack.config.js && node ./node_modules/webpack/bin/webpack.js --config webpack.commonjs2.config.js",
"dev": "node ./node_modules/webpack/bin/webpack.js --watch --config webpack.config.js & ./node_modules/http-server/bin/http-server"
},
"dependencies": {},
"browserDependencies": {},
"devDependencies": {
"babel-core": "^5.6.5",
"babel-loader": "^5.1.4",
"esdoc": "^0.3.1",
"http-server": "^0.9.0",
"node-libs-browser": "^0.5.2",
"webpack": "^1.9.11"
}
}