-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 901 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 901 Bytes
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
{
"scripts": {
"cov": "c8 report --reporter=text-lcov",
"cov-html": "c8 report --reporter=html",
"build": "webpack --mode production",
"prepublishOnly": "npm test",
"start": "webpack serve --mode development --hot --port 3000",
"test": "c8 mocha --require test-setup.js src/**/*.spec.js"
},
"type": "module",
"devDependencies": {
"@riotjs/compiler": "^10.0.0",
"@riotjs/register": "^10.0.0",
"@riotjs/webpack-loader": "^10.0.0",
"c8": "^10.1.3",
"chai": "^6.0.1",
"html-webpack-plugin": "^5.6.4",
"jsdom": "^26.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"@riotjs/hot-reload": "^10.0.0",
"@riotjs/lazy": "^10.0.0",
"@riotjs/route": "^10.0.0",
"riot": "^10.0.0"
}
}