-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.52 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": "megamark",
"description": "Markdown with easy tokenization, a fast highlighter, and a lean HTML sanitizer",
"homepage": "https://github.com/bevacqua/megamark",
"author": {
"name": "Nicolas Bevacqua",
"email": "nicolasbevacqua@gmail.com",
"url": "http://ponyfoo.com"
},
"version": "3.3.0",
"repository": {
"type": "git",
"url": "git://github.com/bevacqua/megamark.git"
},
"bugs": {
"url": "https://github.com/bevacqua/megamark/issues"
},
"scripts": {
"build": "jshint . && browserify -s megamark -do dist/megamark.js megamark.js && uglifyjs -m -c -o dist/megamark.min.js dist/megamark.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"
},
"main": "./megamark",
"browser": {
"highlight.js": "highlight-redux"
},
"dependencies": {
"assignment": "2.1.0",
"highlight-redux": "1.0.1",
"highlight.js": "8.4.0",
"highlight.js-tokens": "1.0.0",
"insane": "2.6.0",
"linkify-it": "0.1.2",
"markdown-it": "5.1.0",
"sluggish": "1.0.1"
},
"devDependencies": {
"browserify": "10.2.6",
"jshint": "2.8.0",
"tape": "3.5.0",
"uglify-js": "2.4.23"
}
}