-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"author": "Gianluca Guarini https://github.com/GianlucaGuarini",
"bugs": {
"url": "https://github.com/riot/hot-reload/issues"
},
"dependencies": {
"bianco.query": "^1.1.4"
},
"description": "Riot Hot Reload Api",
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"@rollup/plugin-node-resolve": "^15.2.2",
"chai": "^4.3.10",
"eslint": "^8.50.0",
"eslint-config-riot": "^4.1.1",
"jsdom": "^22.1.0",
"jsdom-global": "3.0.2",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"riot": "^9.0.4",
"rollup": "^4.0.2"
},
"peerDependencies": {
"riot": "^6.0.0 || ^7.0.0 || ^9.0.0"
},
"homepage": "https://github.com/riot/hot-reload#readme",
"license": "MIT",
"type": "module",
"main": "index.js",
"module": "index.js",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"files": [
"index.cjs",
"index.js"
],
"name": "@riotjs/hot-reload",
"repository": {
"type": "git",
"url": "git://github.com/riot/hot-reload.git"
},
"scripts": {
"prepare": "npm i riot --no-save",
"lint": "eslint src test",
"build": "rollup -c",
"test": "npm run lint && mocha test",
"prepublishOnly": "npm run build && npm run test"
},
"version": "9.0.1"
}