-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
{
"name": "rooter",
"version": "1.0.0-beta.37",
"description": "",
"scripts": {
"start": "NODE_ENV=development rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"test": "jest",
"cover": "jest --coverage",
"lint": "eslint --quiet --ext .js --ext .jsx ."
},
"main": "cjs/index.js",
"module": "esm/index.js",
"files": [
"react.js",
"rx.js",
"svelte.js",
"cjs/*",
"esm/*"
],
"sideEffects": false,
"contributors": [
"Richard Gorman <richardgorman@outlook.com> (https://github.com/richardgorman)",
"Florian Müller <flomueller1981@gmail.com> (https://github.com/devbucket)"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:bevirtuous/rooter.git"
},
"bugs": {
"url": "https://github.com/bevirtuous/rooter/issues"
},
"homepage": "https://github.com/bevirtuous/rooter",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@testing-library/react": "^9.4.0",
"@virtuous/eslint-config": "^2.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.1.0",
"coveralls": "^3.0.9",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.3.0",
"rxjs": "^6.5.4",
"svelte": "^3.18.2"
},
"dependencies": {
"@types/history": "^4.7.5",
"history": "^5.0.0",
"path-to-regexp": "^1.8.0",
"query-string": "^6.9.0"
}
}