forked from ronik-design/react-drive-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.48 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
{
"name": "react-drive-in",
"version": "1.6.2",
"description": "React component supporting background videos and playlists.",
"main": "lib/react-drive-in.js",
"scripts": {
"compile": "babel -d lib/ src/",
"styles": "lessc --autoprefix='last 5 versions' src/react-drive-in.less > dist/react-drive-in.css && lessc --autoprefix='last 5 versions' src/react-drive-in-multi.less > dist/react-drive-in-multi.css",
"build-browser": "browserify src/react-drive-in.jsx -t [envify --NODE_ENV production ] -t babelify --outfile dist/react-drive-in.js --standalone ReactDriveIn",
"build-browser-min": "browserify src/react-drive-in.jsx -t [envify --NODE_ENV production ] -t babelify --standalone ReactDriveIn | uglifyjs -mc > dist/react-drive-in.min.js",
"prepublish": "npm run compile",
"test": "lab -a code --sourcemaps --transform test/transform.js",
"coverage": "lab -a code --sourcemaps --transform test/transform.js -r html -o coverage.html",
"server": "browser-sync start --server example --server dist",
"watch": "watch 'npm run build-browser && npm run styles' src"
},
"repository": {
"type": "git",
"url": "https://github.com/ronik-design/react-drive-in.git"
},
"keywords": [
"react",
"component",
"video",
"bigvideo",
"background",
"slideshow",
"playlist",
"react-component"
],
"peerDependencies": {
"react": ">=0.13.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babelify": "^6.3.0",
"browser-sync": "^2.9.7",
"browserify": "^11.2.0",
"envify": "^3.4.0",
"eslint": "^1.5.1",
"eslint-config-defaults": "^6.0.0",
"eslint-plugin-filenames": "^0.1.2",
"eslint-plugin-react": "^3.5.0",
"lab": "^6.1.0",
"less": "^2.5.3",
"less-plugin-autoprefix": "^1.5.1",
"react": "^0.13.3",
"uglifyjs": "^2.4.10",
"watch": "^0.16.0"
},
"author": {
"name": "Ronik Design",
"email": "contact@ronikdesign.com",
"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",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"react": "global:React"
},
"dependencies": {
"browserify-shim": "^3.8.10",
"drive-in": "^1.4.2"
}
}