This repository has been archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
46 lines (46 loc) · 1.79 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
45
46
{
"name": "ipfs-project-repos",
"version": "0.0.0",
"description": "IPFS repository info",
"author": "Harlan T Wood <code@harlantwood.net>",
"license": "MIT",
"scripts": {
"copy-css": "cp node_modules/datatables.net-dt/css/jquery.dataTables.css public/styles/ && cp node_modules/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css public/styles/",
"build": "npm-run-all --silent copy-css build:browserify",
"build:browserify": "browserify src/index.coffee --transform coffeeify --extension='.coffee' -g uglifyify | uglifyjs --mangle --compress > public/bundle.js",
"dev": "npm-run-all --silent copy-css --parallel dev:watch dev:server",
"dev:server": "src/server/dev.coffee",
"dev:watch": "nodemon --watch src --watch public/index.html --watch public/styles --exec 'browserify' src/index.coffee --transform coffeeify --extension='.coffee' --outfile public/bundle.js",
"publish": "npm-run-all --silent build ipfs",
"ipfs": "open https://ipfs.io/ipfs/`ipfs add -q -r public | tail -n 1`"
},
"dependencies": {
"is-github-user-or-org": "^1.0.2"
},
"devDependencies": {
"bluebird": "^3.4.1",
"browser-sync": "^2.14.0",
"browserify": "^13.1.0",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"datatables.net": "^1.10.12",
"datatables.net-dt": "^1.10.12",
"datatables.net-fixedheader": "^3.1.2",
"datatables.net-fixedheader-dt": "^3.1.2",
"jquery": "^3.1.0",
"lightsaber": "^0.5.1",
"loading-wave": "0.0.2",
"lodash": "^4.14.1",
"nodemon": "^1.10.0",
"npm-run-all": "^2.3.0",
"octokat": "^0.4.17",
"request-promise": "^4.1.0",
"teacup": "^2.0.0",
"uglify-js": "^2.7.0",
"uglifyify": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git@github.com:ipfs/project-repos.git"
}
}