-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
64
65
66
67
68
69
70
{
"name": "react-space-router",
"description": "Space router bindings for React.",
"version": "0.6.4",
"main": "dist/cjs",
"module": "dist/esm",
"license": "ICS",
"repository": {
"type": "git",
"url": "git://github.com/humaans/react-space-router.git"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"react",
"browser",
"clientside",
"router",
"history",
"location",
"url"
],
"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"
},
"dependencies": {
"space-router": "^0.9.3"
},
"devDependencies": {
"@babel/preset-react": "^7.24.1",
"@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",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"healthier": {
"ignore": [
"examples"
]
},
"ava": {
"files": [
"test/*.test.*"
],
"extensions": [
"js",
"jsx"
],
"require": [
"@swc-node/register"
]
}
}