-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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": "hypermarkdown",
"version": "0.0.1",
"description": "a markdown transcluder that accepts web addresses for .hmd / .md files",
"main": "index.js",
"scripts": {
"test": "node ./test/index.js | tap-spec",
"testify": "nodemon ./test/index.js | tap-spec",
"build": "browserify source/client.js -o build/client.js",
"watch": "watchify source/client.js -o build/client.js -v",
"start": "npm run watch & nodemon server.js",
"deploy": "git push heroku master",
"prod": "NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mixmix/hypermarkdown.git"
},
"author": "mixmix",
"license": "GPLv2",
"bugs": {
"url": "https://github.com/mixmix/hypermarkdown/issues"
},
"homepage": "https://github.com/mixmix/hypermarkdown",
"dependencies": {
"archy": "^1.0.0",
"async": "^0.9.0",
"clipboard": "^1.4.0",
"domquery": "^1.2.0",
"json-stringify-safe": "^5.0.1",
"markdown-it": "^5.0.0",
"request": "^2.65.0",
"routes": "^2.1.0",
"xhr": "^2.1.0"
},
"devDependencies": {
"browserify": "^12.0.0",
"nock": "^2.15.0",
"nodemon": "^1.8.0",
"tap-spec": "^4.1.0",
"tape": "^4.2.2",
"watchify": "^3.5.0"
}
}