forked from bevacqua/dragula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.66 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
{
"name": "dragula",
"version": "1.2.2",
"description": "Drag and drop so simple it hurts",
"main": "dragula.js",
"scripts": {
"start": "watchify -s dragula -do dist/dragula.js dragula.js & stylus -w dragula.styl --import node_modules/nib -o dist",
"scripts": "jshint . && browserify -s dragula -do dist/dragula.js dragula.js && uglifyjs -m -c -o dist/dragula.min.js dist/dragula.js",
"styles": "stylus dragula.styl --import node_modules/nib -o dist && cleancss dist/dragula.css -o dist/dragula.min.css",
"build": "npm run scripts && npm run styles",
"deployment": "git add dist && npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -am \"Autogenerated pre-deployment commit\" && bower version ${BUMP:-\"patch\"} && git reset HEAD~2 && git add . && git commit -am \"Release $(cat package.json | jq -r .version)\" && git push --tags && npm publish && git push",
"sync": "git checkout gh-pages ; git merge master ; git push ; git checkout master",
"deploy": "npm run build && npm run deployment && npm run sync"
},
"repository": {
"type": "git",
"url": "https://github.com/bevacqua/dragula.git"
},
"author": "Nicolas Bevacqua <[email protected]> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/dragula/issues"
},
"homepage": "https://github.com/bevacqua/dragula",
"dependencies": {
"contra.emitter": "^1.1.0",
"crossvent": "^1.3.1"
},
"devDependencies": {
"browserify": "8.1.0",
"clean-css": "3.0.4",
"jshint": "2.5.11",
"nib": "^1.1.0",
"stylus": "0.49.3",
"uglify-js": "2.4.16",
"watchify": "2.2.1"
}
}