forked from ronik-design/drive-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "drive-in",
"version": "1.3.3",
"description": "Core library for React Drive-In",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ronik-design/drive-in.git"
},
"keywords": [
"bigvideo",
"background",
"video"
],
"author": {
"name": "Ronik Design",
"email": "contact@ronikdesign.com",
"url": "http://www.ronikdesign.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/ronik-design/drive-in/issues"
},
"homepage": "https://github.com/ronik-design/drive-in",
"dependencies": {
"inherits": "^2.0.1",
"jvent": "^0.2.0"
},
"devDependencies": {
"babel": "^4.6.6",
"babel-eslint": "^1.0.14",
"babelify": "^5.0.4",
"browserify": "^9.0.3",
"coveralls": "^2.11.2",
"eslint": "^0.16.1",
"minifyify": "^6.3.2",
"mocha": "^2.1.0",
"uglify-js": "^2.4.17",
"uglifyify": "^3.0.1"
},
"scripts": {
"build": "npm run build-drive-in; npm run build-drive-in-browser; npm run build-drive-in-browser-min;",
"build-drive-in": "babel src --out-dir lib",
"build-drive-in-browser": "NODE_ENV=production browserify src/index.js -t babelify --outfile dist/drive-in-browser.js --standalone DriveIn",
"build-drive-in-browser-min": "NODE_ENV=production browserify src/index.js -t babelify --standalone DriveIn | uglifyjs -mc > dist/drive-in-browser.min.js",
"lint": "eslint src"
}
}