-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
44 lines (44 loc) · 2.03 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
43
44
{
"name": "woofmark",
"version": "4.2.6",
"description": "Barking up the DOM tree. A modular, progressive, and beautiful Markdown and HTML editor",
"main": "src/woofmark.js",
"scripts": {
"start": "browserify -s woofmark -do dist/woofmark.js src/woofmark.js && browserify -s example -do dist/example.js example/example.js && watchify -s woofmark -dvo dist/woofmark.js src/woofmark.js & watchify -s example -dvo dist/example.js example/example.js & stylus -w src/woofmark.styl -o dist",
"scripts": "jshint . && browserify -s woofmark -do dist/woofmark.js src/woofmark.js && browserify -s example -do dist/example.js example/example.js && uglifyjs -m -c -o dist/woofmark.min.js dist/woofmark.js",
"styles": "stylus src/woofmark.styl -o dist && cleancss dist/woofmark.css -o dist/woofmark.min.css",
"build": "npm run scripts && npm run styles",
"deployment": "git add dist && npm version ${BUMP:-\"patch\"} && git add package.json && git commit -m \"Autogenerated pre-deployment commit\" && 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/woofmark.git"
},
"author": "Nicolas Bevacqua <[email protected]> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/woofmark/issues"
},
"homepage": "https://github.com/bevacqua/woofmark",
"dependencies": {
"bullseye": "1.4.6",
"bureaucracy": "1.0.7",
"crossvent": "1.5.0",
"kanye": "3.0.2",
"local-storage": "1.4.2",
"seleccion": "2.0.0"
},
"devDependencies": {
"browserify": "8.1.0",
"clean-css": "3.0.4",
"domador": "2.4.3",
"jshint": "2.5.11",
"megamark": "3.2.2",
"nib": "1.0.4",
"stylus": "0.49.3",
"uglify-js": "2.4.16",
"watchify": "2.2.1"
}
}