forked from Rich-Harris/packd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "packd",
"version": "2.7.1",
"description": "Simple alternative to browserify-cdn",
"scripts": {
"start": "node server",
"deploy": "now && now alias",
"test": "node test/test.js",
"postpublish": "npm run deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rich-Harris/packd.git"
},
"keywords": [
"browserify",
"bundler",
"npm"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rich-Harris/packd/issues"
},
"homepage": "https://github.com/Rich-Harris/packd#readme",
"dependencies": {
"browserify": "^16.2.3",
"compression": "^1.7.0",
"etag": "^1.8.0",
"express": "^4.15.2",
"is-module": "^1.0.0",
"lru-cache": "^5.1.1",
"minilog": "^3.1.0",
"npm": "^6.6.0",
"pretty-bytes": "^5.1.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rollup": "^1.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.1",
"sander": "^0.6.0",
"semver": "^5.3.0",
"serve-favicon": "^2.4.2",
"sha1": "^1.1.1",
"tar": "^4.4.8",
"terser": "^3.14.1"
},
"devDependencies": {
"eslint": "^5.12.0"
},
"now": {
"alias": "packd",
"files": [
"public",
"server",
"config.js"
]
}
}