-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
34 lines (34 loc) · 859 Bytes
/
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
{
"name": "dat-gist",
"version": "1.0.0",
"description": "A peer-to-peer gist-like app built with Dat",
"main": "index.js",
"scripts": {
"build": "browserify index.js -o index.build.js && cleancss -o main.min.css main.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taravancil/dat-gist.git"
},
"keywords": [
"dat",
"gist",
"beaker browser",
"peer-to-peer"
],
"author": "Tara Vancil <tbvanc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/taravancil/paste-dat/issues"
},
"homepage": "https://github.com/taravancil/past-dat#readme",
"dependencies": {
"escape-html": "^1.0.3",
"marked": "^0.3.6"
},
"devDependencies": {
"browserify": "^14.4.0",
"clean-css-cli": "^4.1.3"
}
}