-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 1.39 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": "diferente",
"version": "1.0.1",
"description": "User-friendly virtual DOM diffing",
"main": "diferente.js",
"scripts": {
"start": "watchify -s diferente -do dist/diferente.js diferente.js",
"scripts": "jshint . && browserify -s diferente -do dist/diferente.js diferente.js && uglifyjs -m -c -o dist/diferente.min.js dist/diferente.js",
"build": "npm run scripts",
"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/diferente.git"
},
"author": "Nicolas Bevacqua <[email protected]> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/diferente/issues"
},
"homepage": "https://github.com/bevacqua/diferente",
"dependencies": {
"virtual-dom": "^2.0.1"
},
"devDependencies": {
"browserify": "8.1.0",
"jshint": "2.5.11",
"uglify-js": "2.4.16",
"watchify": "2.2.1"
}
}