-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.19 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": "jora-cli",
"version": "1.5.1",
"description": "Command line interface for Jora",
"keywords": [
"cli",
"jora"
],
"maintainers": [
{
"name": "Roman Dvornov",
"email": "[email protected]",
"github-username": "lahmatiy"
}
],
"license": "MIT",
"repository": "discoveryjs/jora-cli",
"bin": {
"jora": "./bin/jora"
},
"type": "module",
"main": "./index",
"scripts": {
"test": "mocha --reporter progress",
"lint": "eslint *.js utils test",
"lint-and-test": "npm run lint && npm test",
"coverage": "c8 --reporter=lcovonly npm test"
},
"dependencies": {
"ansi-styles": "^6.2.1",
"clap": "^3.1.1",
"jora": "1.0.0-beta.13",
"jora-sandbox": "^1.3.0",
"open": "^10.1.0",
"supports-color": "^9.4.0",
"tempfile": "^5.0.0"
},
"devDependencies": {
"c8": "^10.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"mocha": "^10.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin",
"utils",
"index.js"
]
}