-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
{
"name": "react-drive-in",
"version": "1.7.3",
"description": "React component supporting background videos and playlists.",
"main": "dist/react-drive-in.js",
"jsnext:main": "lib/react-drive-in.jsx",
"scripts": {
"build": "mkdir -p dist && npm run build-styles && npm run build-node && npm run build-browser",
"build-styles": "lessc --autoprefix='last 5 versions' lib/react-drive-in.less > dist/react-drive-in.css && lessc --autoprefix='last 5 versions' lib/react-drive-in-multi.less > dist/react-drive-in-multi.css",
"build-browser": "rollup -c rollup.config.browser.js",
"build-node": "rollup -c",
"test": "eslint lib",
"prepublish": "npm test && npm run build",
"dev-server": "browser-sync start --no-open --server example --server dist",
"watch": "watch 'npm run build-browser && npm run build-styles' lib",
"develop": "npm run build && npm run dev-server & npm run watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ronik-design/react-drive-in.git"
},
"keywords": [
"react",
"component",
"video",
"bigvideo",
"background",
"slideshow",
"playlist",
"react-component"
],
"engines": {
"node": ">=4.0.0"
},
"peerDependencies": {
"react": "^0.14.3"
},
"devDependencies": {
"babel": "^6.1.18",
"babel-cli": "^6.2.0",
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015-rollup": "^1.0.0",
"babel-preset-react": "^6.1.18",
"browser-sync": "^2.9.7",
"eslint": "^1.7.3",
"eslint-config-defaults": "^7.0.1",
"eslint-plugin-filenames": "^0.2.0",
"eslint-plugin-react": "^3.10.0",
"less": "^2.5.3",
"less-plugin-autoprefix": "^1.5.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-drive-in": "^1.7.1",
"rollup": "^0.21.0",
"rollup-plugin-babel": "^2.1.0",
"rollup-plugin-commonjs": "^1.4.0",
"rollup-plugin-inject": "^1.2.0",
"rollup-plugin-npm": "^1.1.0",
"watch": "^0.16.0"
},
"author": {
"name": "Ronik Design",
"email": "[email protected]",
"url": "http://www.ronikdesign.com"
},
"licenses": [
{
"type": "ISC",
"url": "http://github.com/ronik-design/react-drive-in/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/ronik-design/react-drive-in/issues"
},
"homepage": "https://github.com/ronik-design/react-drive-in",
"dependencies": {
"drive-in": "^1.5.2"
}
}