forked from bevacqua/domador
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.35 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
{
"name": "domador",
"version": "2.4.5",
"description": "Dependency-free and lean DOM parser that outputs Markdown",
"main": "domador.js",
"scripts": {
"build": "jshint . && browserify -s domador -do dist/domador.js domador.js && uglifyjs -m -c -o dist/domador.min.js dist/domador.js",
"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",
"test": "tape test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bevacqua/domador.git"
},
"author": "Nicolas Bevacqua <nicolasbevacqua@gmail.com> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/domador/issues"
},
"browser": {
"./virtualWindowContext.js": "./windowContext.js"
},
"homepage": "https://github.com/bevacqua/domador",
"dependencies": {
"jsdom": "9.9.1",
"string.prototype.repeat": "0.2.0"
},
"devDependencies": {
"browserify": "^13.3.0",
"jshint": "^2.13.4",
"tape": "^4.6.3",
"uglify-js": "^2.7.5",
"watchify": "^3.8.0"
}
}