-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 KB
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": "npmdocs.github.io",
"version": "0.1.4",
"description": "HTML page that redirects you to npm package's homepage",
"author": "Eugene Sharygin <eush77@gmail.com>",
"private": "true",
"license": "MIT",
"scripts": {
"prebuild": "mkdir -p dist",
"build": "browserify -t babelify index.js |indexhtmlify --title=npmdocs.github.io |html-minifier --config-file=htmlminifier.rc --minify-js >dist/index.html",
"clean": "rm -r dist",
"prepublish": "npm run build",
"deploy": "npm run build && git-directory-deploy --directory=dist --repo=out --branch=master"
},
"homepage": "https://github.com/npmdocs/www",
"repository": {
"type": "git",
"url": "https://github.com/npmdocs/www"
},
"bugs": {
"url": "https://github.com/npmdocs/www/issues"
},
"keywords": [
"npm",
"package",
"repository",
"github",
"html",
"redirect",
"website"
],
"dependencies": {
"es6-promise": "^2.0.1",
"github-url-from-git": "^1.4.0",
"whatwg-fetch": "^0.8.1"
},
"devDependencies": {
"babelify": "^5.0.4",
"browserify": "^9.0.3",
"git-directory-deploy": "^1.1.0",
"html-minifier": "^0.7.2",
"indexhtmlify": "^1.2.0"
}
}