-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "@usebasejump/cli",
"version": "0.0.16",
"description": "Generate new basejump projects from the command line",
"main": "build/index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest"
},
"files": [
"build",
"templates"
],
"bin": {
"basejump": "./build/index.js"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^10.0.0",
"generate-template-files": "^3.2.1",
"got": "10.7.0",
"prompts": "^2.4.2",
"tar": "6.1.15"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.4",
"@types/tar": "^6.1.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^27.0.1",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"tar": "6.1.15",
"ts-jest": "^29.0.4",
"typescript": "^4.9.4"
}
}