-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "@riotjs/webpack-loader",
"version": "9.0.1",
"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",
"prepare": "npm i @riotjs/compiler @riotjs/hot-reload --no-save",
"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",
"webpack": ">=5.0.0"
},
"author": "Gianluca Guarini <[email protected]> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/webpack-loader/issues"
},
"homepage": "https://github.com/riot/webpack-loader#readme",
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.51.0",
"eslint-config-riot": "^4.1.1",
"@riotjs/prettier-config": "^1.1.0",
"mocha": "^10.2.0",
"rollup": "^4.0.2",
"webpack": "^5.88.2"
}
}