-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.11 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
{
"name": "@scottjarvis/router",
"version": "2.0.1",
"description": "A simple isomorphic router.",
"author": "sc0ttj",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sc0ttj/router.git"
},
"homepage": "https://github.com/sc0ttj/router",
"main": "dist/router.js",
"module": "dist/router.es6.js",
"es2015": "dist/router.es6.js",
"main:umd": "dist/router.umd.js",
"browser": "dist/router.umd.js",
"unpkg": "dist/router.umd.js",
"source": "src/router.js",
"scripts": {
"build": "microbundle --name router --compress",
"dev": "microbundle watch",
"test": "microbundle --name router --compress && echo 'Build complete... No tests yet!'"
},
"keywords": [
"router",
"routing",
"express",
"http",
"server",
"middleware",
"lambda",
"regex"
],
"files": [
"dist/router.js",
"dist/router.es6.js",
"dist/router.umd.js"
],
"dependencies": {},
"devDependencies": {
"microbundle": "^0.12.4"
},
"bugs": {
"url": "https://github.com/sc0ttj/router/issues"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
}
}