-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "webm.js",
"version": "0.0.0",
"description": "JavaScript WebM encoder",
"private": true,
"scripts": {
"start": "webpack-dev-server --inline",
"dev": "rm -rf dist && webpack",
"release": "rm -rf dist && NODE_ENV=production webpack",
"lint": "eslint .",
"test": "npm run dev && npm run release && npm run lint",
"pages": "npm run release && D=`mktemp -d` && cp dist/* \"$D\" && git checkout gh-pages && rm -f -- *; mv \"$D\"/* . && rmdir \"$D\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/webm.js.git"
},
"keywords": [
"asm.js",
"emscripten",
"webm",
"ffmpeg",
"video"
],
"author": "Kagami Hiiragi",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Kagami/webm.js/issues"
},
"homepage": "https://github.com/Kagami/webm.js#readme",
"dependencies": {
"core-js": "^1.0.0",
"ffmpeg.js": "^2.7.9012",
"material-ui": "^0.11.0",
"react": "^0.13.3",
"react-tap-event-plugin": "^0.1.7"
},
"devDependencies": {
"babel-core": "^5.8.9",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
"eslint": "^0.24.1",
"eslint-plugin-react": "^3.0.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.0",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.10.1"
}
}