-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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": "@thecodecampus/tcc-cli",
"version": "2.0.0",
"description": "theCodeCampus CLI - Manage Hands-On Solutions",
"author": "W11K GmbH",
"contributors": [
"Can Kattwinkel",
"Philipp Burgmer",
"Sascha Engmann"
],
"repository": "https://github.com/theCodeCampus/tcc-cli",
"license": "MIT",
"scripts": {
"build": "tsc && chmod +x dist/tcc.js",
"test": "npm run build && jasmine",
"prepare": "npm run test"
},
"dependencies": {
"archiver": "^3.0.0",
"commander": "2.13.0",
"fs-extra": "5.0.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"rimraf": "^2.6.2",
"simple-git": "^3.19.1",
"winston": "2.4.0"
},
"main": "./dist/tcc.js",
"bin": {
"tcc": "./dist/tcc.js"
},
"devDependencies": {
"@types/archiver": "^2.1.2",
"@types/fs-extra": "5.0.0",
"@types/jasmine": "2.8.5",
"@types/jszip": "3.1.3",
"@types/lodash": "4.14.117",
"@types/node": "^20.5.0",
"@types/rimraf": "^2.0.2",
"@types/winston": "2.3.7",
"jasmine": "2.9.0",
"typescript": "^5.1.6"
}
}