-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "typescript-boilerplate",
"version": "0.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"typescript-boilerplate": "./dist/typescript-boilerplate-cli.js"
},
"repository": "https://github.com/kevinbuhmann/typescript-boilerplate.git",
"author": "Kevin Buhmann <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "ts-node ./build/lint.ts",
"build": "ts-node ./build/build.ts",
"test": "ts-node ./build/test.ts",
"print-coverage": "istanbul report -t text",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"chalk": "2.4.2",
"yargs": "17.5.1"
},
"devDependencies": {
"@types/jasmine": "4.0.3",
"@types/node": "18.0.0",
"@types/rimraf": "3.0.2",
"@types/yargs": "17.0.10",
"istanbul": "0.4.5",
"jasmine": "4.2.1",
"ncp": "2.0.0",
"prettier": "2.7.1",
"remap-istanbul": "0.13.0",
"rimraf": "3.0.2",
"ts-node": "10.8.2",
"tslint": "5.20.1",
"tslint-consistent-codestyle": "1.16.0",
"typescript": "4.7.4"
}
}