-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
107 lines (107 loc) · 2.78 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "superstatic",
"version": "9.0.3",
"description": "A static file server for fancy apps",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build -- --build tsconfig.publish.json",
"format": "npm run lint -- --fix --quiet",
"test": "npm run lint && npm run coverage",
"test-unit": "mocha \"test/unit/**\"",
"test-integration": "mocha \"test/integration/**\"",
"lint": "eslint --ext .js,.ts .",
"coverage": "nyc mocha \"test/unit/**\" \"test/integration/**\"",
"watch": "mocha -w \"test/unit/**\" \"test/integration/**\""
},
"author": "Firebase (https://www.firebase.com/)",
"license": "MIT",
"bin": {
"superstatic": "./lib/bin/server.js"
},
"files": [
"bin",
"lib",
"templates"
],
"engines": {
"node": "18 || 20"
},
"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": {
"basic-auth-connect": "^1.0.0",
"commander": "^10.0.0",
"compression": "^1.7.0",
"connect": "^3.7.0",
"destroy": "^1.0.4",
"fast-url-parser": "^1.1.3",
"glob-slasher": "^1.0.1",
"is-url": "^1.2.2",
"join-path": "^1.1.1",
"lodash": "^4.17.19",
"mime-types": "^2.1.35",
"minimatch": "^6.1.6",
"morgan": "^1.8.2",
"on-finished": "^2.2.0",
"on-headers": "^1.0.0",
"path-to-regexp": "^1.8.0",
"router": "^1.3.1",
"update-notifier-cjs": "^5.1.6"
},
"optionalDependencies": {
"re2": "^1.17.7"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/connect": "^3.4.35",
"@types/lodash": "^4.14.186",
"@types/mime-types": "^2.1.1",
"@types/mocha": "^10.0.0",
"@types/node": "^20.10.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"concat-stream": "^2.0.0",
"eslint": "^8.24.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.1",
"eslint-plugin-prettier": "^5.1.2",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"std-mocks": "^1.0.1",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.0"
}
}