-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@riotjs/cli",
"version": "9.0.5",
"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": "^8.0.1",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-riot": "^4.1.0",
"mocha": "^10.2.0",
"prettier": "^3.0.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/cli/issues"
},
"homepage": "https://github.com/riot/cli#readme",
"author": "Gianluca Guarini <[email protected]> (http://gianlucaguarini.com/)",
"dependencies": {
"@babel/preset-typescript": "^7.22.5",
"@riotjs/compiler": "^9.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-commonjs": "^25.0.3",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"cumpa": "^2.0.1",
"glob": "^10.3.3",
"optionator": "^0.9.3",
"rollup": "^3.27.1",
"rollup-plugin-riot": "^9.0.0"
}
}