This repository was archived by the owner on Aug 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.99 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
72
73
74
{
"name": "boj",
"version": "0.5.6",
"description": "script set for boj",
"repository": "https://github.com/RanolP/boj",
"author": "RanolP <public.ranolp@gmail.com>",
"license": "Unlicense",
"main": "./bin/run",
"bin": {
"boj": "./bin/run"
},
"scripts": {
"build": "tsc",
"bstart": "tsc && cd ../RanolP && node ../boj-toolchain/bin/run",
"start": "cd ../RanolP && node ../boj-toolchain/bin/run"
},
"dependencies": {
"@idlebox/node-json-edit": "^1.0.20",
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-help": "^3.0.0",
"@oclif/plugin-not-found": "^1.2.3",
"chalk": "^4.0.0",
"cli-highlight": "^2.1.4",
"dedent": "^0.7.0",
"fuzzy": "^0.1.3",
"globby": "^11.0.0",
"inquirer": "^7.1.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"node-fetch": "^2.6.0",
"playwright": "^1.0.1",
"progress": "^2.0.3",
"string-width": "^4.2.0",
"terminal-link": "^2.1.1",
"update-notifier": "^4.1.0",
"viz.js": "^2.1.2",
"yup": "^0.28.5"
},
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/eslint": "^6.8.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.7",
"@types/prettier": "^2.0.0",
"@types/progress": "^2.0.3",
"@types/update-notifier": "^4.1.0",
"@types/yup": "^0.28.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"files": [
"bin",
"dist"
],
"oclif": {
"bin": "boj",
"commands": "./src/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-autocomplete"
]
}
}