-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 KB
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
{
"name": "@rturnq/solid-router",
"version": "0.3.1-beta.1",
"description": "A router for solid-js",
"author": "Ryan Turnquist",
"license": "MIT",
"homepage": "https://github.com/rturnq/solid-router#readme",
"repository": {
"type": "git",
"url": "https://github.com/rturnq/solid-router"
},
"type": "module",
"exports": {
".": {
"solid": "./dist/index.jsx",
"default": "./dist/build/index.js"
}
},
"main": "dist/build/index.cjs.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c&&tsc",
"prebuild": "rimraf dist",
"test": "jest && npm run test:types",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage && npm run test:types",
"test:types": "tsc --project tsconfig.test.json",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"regexparam": "^1.3.0"
},
"peerDependencies": {
"solid-js": ">= 1.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^26.0.16",
"babel-preset-solid": "1.0.1",
"history": "^5.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-filesize": "^9.1.0",
"solid-jest": "^0.1.1",
"solid-js": "1.0.3",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
},
"jest": {
"preset": "solid-jest/preset/browser"
}
}