-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.21 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
{
"name": "rc-videolist-autoplay",
"version": "0.0.3",
"description": "react component which can automatic pick the one video in the screen from a video list and play it",
"main": "./build/index.js",
"watch": {
"test": {
"patterns": ["src", "test"],
"extensions": "js,html",
"quiet": true
}
},
"scripts": {
"start": "node server.js",
"build": "babel src/ --out-dir build/",
"test": "npm run build && mocha ./test/test.js",
"watch": "npm-watch",
"publish-npm": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:qingying/rc-videolist-autoplay.git"
},
"author": "qingying",
"license": "MIT",
"bin": "./build/index.js",
"dependencies": {
"yargs": "~5.0.0",
"cheerio": "0.22.0",
"path": "~0.12.7",
"request": "~2.74.0",
"colour": "~0.7.1",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-redux": "5.0.5",
"react-tap-event-plugin": "2.0.1",
"redux": "3.6.0",
"redux-thunk": "2.2.0",
"redux-logger": "2.6.1",
"web-animations-js": "2.2.5",
"stickybits": "1.3.3",
"@ali/lib-img": "0.2.25"
},
"devDependencies": {
"webpack": "2.2.0",
"babel-cli": "^6.0.0",
"babel-loader": "6.2.10",
"babel-core": "^6.6.x",
"babel-preset-es2015": "*",
"babel-preset-stage-0": "*",
"babel-preset-stage-1": "*",
"babel-preset-stage-2": "*",
"babel-preset-stage-3": "*",
"babel-preset-react": "*",
"babel-polyfill": "~6.13.0",
"npm-watch": "*",
"mocha": "~3.1.0",
"commander": "~2.9.0",
"webpack-dev-server": "2.4.2",
"react-hot-loader": "3.0.0-beta.6",
"extract-text-webpack-plugin": "2.1.0",
"resolve-url-loader": "1.6.1",
"style-loader": "0.13.0",
"sass-loader": "4.1.1",
"url-loader": "0.5.7",
"node-sass": "4.3.0",
"px2rem-loader": "0.1.7",
"postcss-loader": "0.8.0",
"css-loader": "0.23.0",
"autoprefixer": "6.1.2",
"open": "0.0.5"
}
}