-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
42 lines (42 loc) · 1.74 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
{
"name": "insignia",
"version": "5.0.0",
"description": "Customizable tag input. Progressive. No non-sense!",
"main": "insignia.es5.js",
"scripts": {
"build": "npm run scripts && npm run styles",
"deploy": "npm run build && npm run deployment && npm run sync",
"deployment": "git add dist ; npm version ${BUMP:-\"patch\"} ; git add package.json ; git commit -am \"Release $(cat package.json | jq -r .version)\" ; git push --tags ; npm publish ; git push",
"scripts": "jshint . && babel --presets es2015 --out-file insignia.es5.js insignia.js && browserify -s insignia -t [ babelify --presets [ es2015 ] ] -do dist/insignia.js insignia.js && uglifyjs -m -c -o dist/insignia.min.js dist/insignia.js",
"start": "watchify -vs insignia -t [ babelify --presets [ es2015 ] ] -do dist/insignia.js insignia.js & stylus -w insignia.styl -o dist",
"styles": "stylus insignia.styl -o dist && cleancss dist/insignia.css -o dist/insignia.min.css",
"sync": "git checkout gh-pages ; git merge master ; git push ; git checkout master"
},
"repository": {
"type": "git",
"url": "https://github.com/bevacqua/insignia.git"
},
"author": "Nicolas Bevacqua <nicolasbevacqua@gmail.com> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/insignia/issues"
},
"homepage": "https://github.com/bevacqua/insignia",
"dependencies": {
"contra": "1.9.4",
"crossvent": "1.5.4",
"sell": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-preset-es2015": "6.9.0",
"babelify": "7.3.0",
"browserify": "13.0.1",
"clean-css": "^3.0.4",
"jshint": "^2.5.11",
"nib": "^1.0.4",
"stylus": "^0.49.3",
"uglify-js": "^2.4.16",
"watchify": "^2.2.1"
}
}