-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "space-router",
"description": "All the routing essentials.",
"version": "0.9.3",
"main": "dist/cjs",
"module": "dist/esm",
"license": "ICS",
"repository": {
"type": "git",
"url": "git://github.com/KidkArolis/space-router.git"
},
"keywords": [
"browser",
"router",
"small",
"clientside",
"universal",
"history",
"location",
"url"
],
"engines": {
"node": ">=14"
},
"author": "Karolis Narkevicius",
"scripts": {
"test": "npm run build && healthier && prettier --check '**/*.{js,css,yml}' && c8 ava",
"format": "prettier --write '**/*.{js,css,yml}'",
"coverage": "c8 --reporter=html ava",
"build": "node ./tasks/build.js",
"watch": "node ./tasks/build.js -w",
"release": "np --no-release-draft",
"release:beta": "np --tag=beta --no-release-draft",
"release:docs": "hugo -s docs && gh-pages -d docs/public"
},
"devDependencies": {
"@swc-node/register": "^1.9.1",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.4.17",
"ava": "^6.1.2",
"c8": "^9.1.0",
"execa": "^8.0.1",
"gh-pages": "^6.1.1",
"healthier": "^7.0.0",
"prettier": "^3.2.5"
},
"healthier": {
"global": [
"location",
"history",
"requestAnimationFrame"
],
"ignore": [
"docs/static/js",
"docs/assets/js"
]
},
"ava": {
"require": [
"@swc-node/register"
]
}
}