-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "rdra",
"version": "0.0.9",
"description": "",
"author": "Go Tanaka <tanago3@gmail.com>",
"main": "build/cli.js",
"bin": {
"rdra": "./build/cli.js"
},
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"cli",
"RDRA"
],
"scripts": {
"test": "jest",
"build": "ts-node script/build.ts",
"clean": "tsc --clean",
"format": "prettier --loglevel warn --write \"**/*.{ts,js,json,yaml}\"",
"format:check": "prettier --loglevel warn --check \"**/*.{ts,js,json,yaml}\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\""
},
"dependencies": {
"@aduh95/viz.js": "^3.5.0",
"ajv": "^8.10.0",
"chalk": "^4.1.2",
"cli-table": "^0.3.11",
"table-b": "^4.0.0",
"tiny-invariant": "^1.2.0",
"yaml": "^1.10.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/cli-table": "^0.3.0",
"@types/jest": "^27.4.1",
"@types/yargs": "^17.0.1",
"execa": "^5.1.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
},
"license": "Apache-2.0"
}