forked from searleser97/cpbooster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "cpbooster",
"author": "searleser97",
"version": "1.1.7",
"description": "cpbooster is a command line utility that gets you up and running quickly for competitive programming contests",
"homepage": "https://github.com/searleser97/cpbooster",
"repository": "github:searleser97/cpbooster",
"keywords": [
"competitive",
"programming",
"booster",
"tool",
"helper"
],
"main": "src/index.js",
"bin": {
"cpbooster": "./dist/index.js"
},
"target": "node",
"scripts": {
"start": "npm run build && node dist/index.js test -h",
"start:dev": "nodemon",
"build": "rimraf ./dist && tsc",
"test": "echo \"no test specified\" "
},
"license": "AGPL-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/yargs": "^15.0.5",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"chalk": "^4.1.0",
"diff": "^4.0.2",
"express": "^4.17.1",
"yargs": "^15.4.0"
}
}