-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "@bleckert/router",
"version": "0.2.0",
"description": "Simple router",
"source": "index.js",
"type": "module",
"module": "dist/module.js",
"exports": "./dist/module.js",
"sideEffects": false,
"scripts": {
"start": "parcel example/index.html",
"watch": "parcel watch",
"build": "parcel build",
"size": "size-limit"
},
"size-limit": [
{
"path": "dist/module.js",
"limit": "0.5 kB"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tbleckert/router.git"
},
"keywords": [
"router",
"js",
"simple",
"callback",
"init",
"small"
],
"author": "Tobias Bleckert <[email protected]> (https://tobiasbleckert.se/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tbleckert/router/issues"
},
"homepage": "https://github.com/tbleckert/router",
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"ava": "^4.3.0",
"parcel": "^2.6.0",
"prettier": "^2.6.2",
"size-limit": "^7.0.8"
}
}