-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
42 lines (42 loc) · 1022 Bytes
/
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
{
"name": "pushstate-server",
"version": "3.1.0",
"description": "Static file server that works with HTML5 Pushstate.",
"main": "index.js",
"scripts": {
"test": "npm run format && npm run test-runner",
"test-runner": "tape test/index.js | tap-format-spec",
"format": "prettier --write \"index.js\" \"test/index.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/scottcorgan/pushstate-server.git"
},
"keywords": [
"pushstate",
"html5",
"static",
"server"
],
"author": "Scott Corgan",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottcorgan/pushstate-server/issues"
},
"dependencies": {
"compression": "1.7.3",
"connect": "3.6.6",
"connect-static-file": "2.0.0",
"minimist": "1.2.0",
"serve-static": "1.13.2"
},
"devDependencies": {
"@tap-format/spec": "0.2.0",
"got": "9.2.2",
"prettier": "1.14.3",
"tape": "4.9.1"
},
"bin": {
"pushstate-server": "./bin/pushstate-server"
}
}