-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "video-embed-parser",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"build:webpack": "NODE_ENV=production webpack --config config/webpack.production.config.js && cp -f dist/video-embed-parser.* docs/ && webpack --config config/webpack.docs.config.js",
"build:docs": "NODE_ENV=production webpack --config config/webpack.docs.config.js",
"build": "npm run build:webpack",
"start": "node config/dev_server.js",
"sync": "git add . && git commit -m \"$msg\" && git push origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jie/video-embed-parser"
},
"keywords": [
"video embed",
"video embed parser",
"youtube",
"youku",
"tudou",
"bilibili"
],
"author": "Yang",
"license": "MIT",
"bugs": {
"url": "https://github.com/jie/video-embed-parser/issues"
},
"homepage": "https://github.com/jie/video-embed-parser#readme",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"express": "^4.15.2",
"immutable": "^3.8.1",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
},
"devDependencies": {
"html-webpack-plugin": "^2.28.0"
}
}