-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "abstract-state-router",
"version": "8.0.1",
"description": "Like ui-router, but without all the Angular. The best way to structure a single-page webapp.",
"main": "bundle.js",
"type": "module",
"types": "index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "npm run build && node --test test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TehShrike/abstract-state-router.git"
},
"keywords": [
"router",
"ui-router"
],
"author": "TehShrike",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TehShrike/abstract-state-router/issues"
},
"homepage": "https://github.com/TehShrike/abstract-state-router",
"dependencies": {
"combine-arrays": "~1.0.2",
"eventemitter3": "4.0.7",
"hash-brown-router": "~3.4.1",
"iso-next-tick": "1.0.0",
"page-path-builder": "~1.0.4",
"path-to-regexp-with-reversible-keys": "~1.0.3",
"then-denodeify": "~1.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"rollup": "^2.53.1",
"rollup-plugin-visualizer": "^4.2.0"
}
}