forked from appleple/modal-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 910 Bytes
/
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
{
"name": "modal-video.js",
"version": "1.0.0",
"description": "modal-video",
"homepage": "http://developer.a-blogcms.jp",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"js": "npm run babel && npm run uglify",
"babel": "babel ./src/index.js --out-file ./js/modal-video.js",
"uglify": "uglifyjs ./js/modal-video.js > ./js/modal-video.min.js",
"sass": "node-sass ./scss/modal-video.scss ./css/modal-video.min.css --output-style compressed",
"watch": "nodemon --ignore 'js/*.js' -x \"npm run js && npm run sass\"",
"server": "http-server ./",
"start": "npm-run-all -p watch server"
},
"author": "appleple",
"license": "appleple",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"node-sass": "^4.3.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.1",
"http-server": "^0.9.0",
"uglify-js": "^2.7.5"
}
}