-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
54
55
{
"name": "rollup-plugin-riot",
"version": "10.0.0-beta.2",
"type": "module",
"description": "Rollup plugin for Riot.js",
"jsnext:main": "dist/rollup-plugin-riot.js",
"main": "dist/rollup-plugin-riot.cjs",
"module": "dist/rollup-plugin-riot.js",
"source": "./src/index.js",
"exports": {
"import": "./dist/rollup-plugin-riot.js",
"require": "./dist/rollup-plugin-riot.cjs"
},
"homepage": "https://github.com/riot/rollup-plugin-riot#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/riot/rollup-plugin-riot.git"
},
"files": [
"dist/"
],
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": "https://github.com/riot/rollup-plugin-riot/issues",
"keywords": [
"riot",
"rollup-plugin"
],
"dependencies": {
"@rollup/pluginutils": "^5.2.0"
},
"devDependencies": {
"@riotjs/compiler": "^10.0.0",
"@riotjs/prettier-config": "^1.1.0",
"chai": "^6.0.1",
"eslint": "^9.33.0",
"eslint-config-riot": "^5.0.2",
"fs-extra": "^11.3.1",
"mocha": "^11.7.1",
"postcss": "^8.5.6",
"postcss-cssnext": "^3.1.1",
"prettier": "^3.6.2",
"rollup": "^4.47.1"
},
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"lint": "npm run eslint && prettier . -c",
"test": "npm run lint && npm run mocha",
"eslint": "eslint src/*.js",
"mocha": "mocha test/*.js",
"watch": "chokidar 'src/*.js' -c 'npm run build'",
"prepublishOnly": "npm run build"
}
}