-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.74 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@riotjs/cli",
"version": "10.0.0",
"description": "Riot command line utility",
"main": "cli.js",
"type": "module",
"exports": {
"import": "./cli.js",
"require": "./cli.cjs"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"riot": "index.js"
},
"scripts": {
"cov": "c8 report --reporter=lcov",
"lint": "eslint ./ && npx prettier --check ./",
"cov-html": "c8 report --reporter=html",
"prepublishOnly": "npm run test && npm run build",
"pretest": "npm run lint && npm run build",
"build": "rollup -c",
"test": "export RIOT_CLI_IGNORE_EXIT_ERRORS=1; c8 mocha --exit test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riot/cli.git"
},
"keywords": [
"riot",
"cli"
],
"files": [
"src",
"index.js",
"cli.js",
"cli.cjs",
"README.md"
],
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"c8": "^10.1.3",
"chai": "^6.0.1",
"eslint": "^9.33.0",
"eslint-config-riot": "^5.0.2",
"mocha": "^11.7.1",
"prettier": "^3.6.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/cli/issues"
},
"homepage": "https://github.com/riot/cli#readme",
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com/)",
"dependencies": {
"@babel/preset-typescript": "^7.27.1",
"@riotjs/compiler": "^10.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"chalk": "^5.6.0",
"chokidar": "^4.0.3",
"cumpa": "^2.0.1",
"glob": "^11.0.3",
"optionator": "^0.9.4",
"rollup": "^4.47.1",
"rollup-plugin-riot": "^10.0.0"
}
}