forked from firebase/superstatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.22 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "superstatic",
"version": "4.0.1",
"description": "A static file server for fancy apps",
"main": "./lib",
"scripts": {
"test": "npm run lint && npm run coverage",
"test-unit": "mocha test/unit/**",
"test-integration": "mocha test/integration/**",
"lint": "eslint .",
"coverage": "istanbul cover --print detail ./node_modules/.bin/_mocha -- test/unit/** test/integration/**",
"outdated": "npm outdated --depth 0",
"audit": "npm shrinkwrap --dev && nsp audit-shrinkwrap || true && rm npm-shrinkwrap.json",
"watch": "mocha -w test/unit/** test/integration/**"
},
"author": "Firebase (https://www.firebase.com/)",
"license": "MIT",
"bin": {
"superstatic": "bin/server"
},
"repository": {
"type": "git",
"url": "https://github.com/firebase/superstatic.git"
},
"bugs": {
"url": "https://github.com/firebase/superstatic/issues"
},
"keywords": [
"static",
"server",
"firebase",
"hosting",
"pushstate",
"html5",
"router",
"file",
"directory",
"hash",
"hashbang"
],
"dependencies": {
"as-array": "^1.0.0",
"async": "^1.2.1",
"basic-auth-connect": "^1.0.0",
"chalk": "^1.0.0",
"char-spinner": "^1.0.1",
"compare-semver": "^1.0.0",
"compression": "^1.2.2",
"connect": "^3.3.3",
"connect-query": "^0.2.0",
"destroy": "^1.0.3",
"fast-url-parser": "^1.1.3",
"fs-extra": "^0.20.0",
"glob": "^5.0.3",
"glob-slasher": "^1.0.1",
"home-dir": "^1.0.0",
"is-url": "^1.2.1",
"join-path": "^1.0.0",
"lodash": "^3.1.0",
"mime-types": "^2.0.4",
"minimatch": "^2.0.1",
"morgan": "^1.5.0",
"nash": "^2.0.0",
"on-finished": "^2.2.0",
"on-headers": "^1.0.0",
"path-to-regexp": "^1.2.1",
"router": "^1.0.0",
"rsvp": "^3.1.0",
"string-length": "^1.0.0",
"try-require": "^1.0.0",
"update-notifier": "0.3.2"
},
"devDependencies": {
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"concat-stream": "^1.5.1",
"eslint": "^1.8.0",
"istanbul": "^0.4.0",
"mocha": "^2.0.1",
"nsp": "^1.0.0",
"request": "^2.51.0",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"std-mocks": "^1.0.0",
"supertest": "^1.0.1"
}
}