-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "@riotjs/webpack-loader",
"version": "10.0.0",
"type": "module",
"description": "Riot official webpack loader",
"main": "dist/riot-webpack-loader.cjs",
"jsnext:main": "dist/riot-webpack-loader.js",
"module": "dist/riot-webpack-loader.js",
"exports": {
"import": "./dist/riot-webpack-loader.js",
"require": "./dist/riot-webpack-loader.cjs"
},
"scripts": {
"prepublishOnly": "npm test",
"lint": "eslint src test",
"build": "rollup -c",
"pretest": "npm run build",
"test": "npm run lint && mocha --timeout 5000 test/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/riot/webpack-loader.git"
},
"keywords": [
"webpack",
"riot",
"loader"
],
"peerDependencies": {
"@riotjs/compiler": "^6.0.0 || ^9.0.0 || ^10.0.0",
"webpack": ">=5.0.0"
},
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/webpack-loader/issues"
},
"homepage": "https://github.com/riot/webpack-loader#readme",
"devDependencies": {
"@riotjs/compiler": "^10.0.0",
"@riotjs/hot-reload": "^10.0.0",
"@riotjs/prettier-config": "^1.1.0",
"chai": "^6.0.1",
"eslint": "^9.33.0",
"eslint-config-riot": "^5.0.2",
"mocha": "^11.7.1",
"rollup": "^4.47.1",
"webpack": "^5.101.3"
}
}