-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 1.25 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
{
"name": "bullseye",
"version": "1.5.0",
"description": "Attach elements onto their target",
"main": "bullseye.js",
"scripts": {
"scripts": "jshint . && browserify -s bullseye -do dist/bullseye.js bullseye.js && uglifyjs -m -c -o dist/bullseye.min.js dist/bullseye.js",
"build": "npm run scripts",
"deployment": "git add dist ; npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -m \"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",
"deploy": "npm run build && npm run deployment"
},
"repository": {
"type": "git",
"url": "https://github.com/bevacqua/bullseye.git"
},
"author": "Nicolas Bevacqua <[email protected]> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/bullseye/issues"
},
"homepage": "https://github.com/bevacqua/bullseye",
"dependencies": {
"crossvent": "^1.3.1",
"seleccion": "2.0.0",
"sell": "^1.0.0"
},
"devDependencies": {
"browserify": "^8.1.0",
"jshint": "^2.5.11",
"uglify-js": "^2.4.16",
"watchify": "^2.2.1"
}
}