-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 890 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
{
"name": "@mpt/preact-router",
"version": "3.3.0",
"license": "MIT",
"author": "Max J. Polster",
"repository": "https://github.com/mxjp/preact-router.git",
"main": "./dist/index.js",
"scripts": {
"clean": "rimraf ./dist ./test_out",
"build": "npm run clean && tsc -p tsconfig-runtime.json",
"test": "npm run clean && tsc -p tsconfig-test.json && ava -v",
"start": "npm run clean && tsc -p tsconfig-test.json && concurrently \"tsc -p tsconfig-test.json -w\" \"ava -w -v\"",
"prepack": "npm test && npm run build"
},
"devDependencies": {
"@types/jsdom": "^20.0.1",
"ava": "^5.1.1",
"concurrently": "^7.6.0",
"jsdom": "^21.1.0",
"preact": "^10.11.3",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"preact": "^10.0.0"
},
"keywords": [
"preact",
"router",
"hooks",
"history",
"hash",
"regex",
"regexp",
"nested"
]
}