forked from searleser97/cpbooster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.64 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
{
"name": "cpbooster",
"author": "searleser97",
"version": "2.2.1",
"description": "cpbooster is a cross-platform CLI tool designed to boost competitive programmer's speed during contests by automating various routine tasks",
"homepage": "https://github.com/searleser97/cpbooster",
"repository": "github:searleser97/cpbooster",
"keywords": [
"competitive",
"programming",
"booster",
"tool",
"helper"
],
"main": "dist/index.js",
"bin": {
"cpbooster": "dist/index.js",
"cpb": "dist/index.js"
},
"target": "node",
"scripts": {
"start": "npm run build && node dist/index.js test -h",
"start:dev": "nodemon",
"build": "rimraf ./dist && ttsc",
"install:dev": "npm run build && npm uninstall cpbooster -g && npm install -g",
"test": "echo \"no test specified\" ",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/diff": "^4.0.2",
"@types/express": "^4.17.6",
"@types/node": "^14.0.14",
"@types/update-notifier": "^4.1.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^7.30.0",
"nodemon": "^2.0.4",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"ttypescript": "^1.5.12",
"typescript": "^3.9.6"
},
"dependencies": {
"chalk": "^4.1.0",
"express": "^4.17.1",
"open": "^8.0.8",
"playwright-chromium": "^1.11.0",
"update-notifier": "^4.1.0",
"yargs": "^15.4.0"
}
}