forked from appleple/react-modal-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.83 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
{
"name": "react-modal-video",
"version": "1.2.3",
"main": "lib/index.js",
"description": "Modal Video Viewer",
"author": "appleple",
"license": "MIT",
"scripts": {
"test": "eslint ./src/core/index.js --fix",
"build:js": "npm-run-all -p build:lib build:test",
"build:lib": "npm run babel",
"build:test": "browserify ./test/src/index.jsx -t babelify -o ./test/dist/index.js",
"build:sass": "npm-run-all -p sass sass:min",
"babel": "babel src --out-dir lib",
"sass": "node-sass ./scss/modal-video.scss ./css/modal-video.css --output-style expanded",
"sass:min": "node-sass ./scss/modal-video.scss ./css/modal-video.min.css --output-style compressed",
"watch:js": "onchange \"src/\" -- npm run build:js",
"watch:sass": "onchange \"scss\" -- npm run build:sass",
"sync": "browser-sync start --server './' --files './js/*.js' './css/*.css' --startPath '/test/index.html'",
"start": "npm-run-all -p watch:js watch:sass sync",
"deploy": "np --no-cleanup"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.3.13",
"babelify": "^7.3.0",
"browser-sync": "^2.23.6",
"browserify": "^13.1.1",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.3.0",
"nightmare": "^2.8.1",
"node-sass": "^4.3.0",
"np": "^2.18.3",
"npm-run-all": "^4.0.1",
"onchange": "^3.2.1",
"power-assert": "^1.4.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"stringify": "^5.1.0",
"uglify-js": "^2.8.22",
"watchify": "^3.9.0"
},
"dependencies": {
"react-transition-group": "^2.2.1"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}