-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 948 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
43
44
45
46
{
"name": "@rill/static",
"description": "Serve static files with Rill.",
"version": "2.1.0",
"author": "Dylan Piercey <pierceydylan@gmail.com>",
"browser": "client/index.js",
"bugs": "https://github.com/rill-js/static/issues",
"dependencies": {
"ms": "^2.0.0",
"node-static": "^0.7.9"
},
"devDependencies": {
"mocha": "^3.1.0",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"homepage": "https://github.com/rill-js/static",
"keywords": [
"files",
"isomorphic",
"rill",
"serve",
"static",
"universal"
],
"license": "MIT",
"main": "server/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rill-js/static.git"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "npm run lint"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
}
}