-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
91 lines (91 loc) · 2.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@riotjs/route",
"version": "9.1.2",
"description": "Riot.js isomorphic router",
"type": "module",
"main": "index.umd.js",
"jsnext:main": "index.js",
"module": "index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.umd.js",
"browser": "./index.umd.js"
},
"./standalone": {
"types": "./index.d.ts",
"import": "./index.standalone.js",
"require": "./index.standalone.umd.js",
"browser": "./index.standalone.umd.js"
}
},
"scripts": {
"prepublishOnly": "npm run build && npm test",
"lint": "eslint src test rollup.config.js && prettier -c .",
"build": "rollup -c && npm run build-demo",
"build-demo": "riot demos/components -o demos/components",
"demo": "npm run build && serve",
"cov": "c8 report --reporter=lcov",
"cov-html": "c8 report --reporter=html",
"test": "npm run lint && c8 mocha -r test/setup.js test/*.spec.js"
},
"files": [
"index.d.ts",
"index.js",
"index.umd.js",
"index.standalone.js",
"index.standalone.umd.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/riot/route.git"
},
"keywords": [
"riot",
"Riot.js",
"router",
"riot-route",
"route"
],
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/route/issues"
},
"homepage": "https://github.com/riot/route#readme",
"devDependencies": {
"@riotjs/cli": "^9.0.5",
"@riotjs/compiler": "^9.0.7",
"@riotjs/prettier-config": "^1.1.0",
"@riotjs/register": "^9.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-virtual": "^3.0.2",
"c8": "^9.1.0",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-riot": "^4.1.1",
"jsdom": "23.2.0",
"jsdom-global": "3.0.2",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"riot": "^9.1.2",
"rollup": "^4.9.5",
"rollup-plugin-riot": "^9.0.2",
"serve": "^14.2.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
},
"peerDependency": {
"riot": "^6.0.0 || ^7.0.0 || ^9.0.0"
},
"dependencies": {
"@riotjs/util": "^2.2.4",
"bianco.attr": "^1.1.1",
"bianco.events": "^1.1.1",
"bianco.query": "^1.1.4",
"cumpa": "^2.0.1",
"rawth": "^3.0.0"
}
}