-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
47
48
49
{
"name": "ts-reporter",
"version": "1.0.0",
"description": "Track typescript conversion velocity for your big projects",
"main": "./dist/index.js",
"author": "Alexander Harding <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "yarn clean; tsc; chmod +x dist/cli.js",
"clean": "rm -rf ./dist",
"start": "node --experimental-specifier-resolution=node --loader ts-node/esm .",
"check-types": "tsc --noEmit",
"check-formatting": "prettier --check '**/*.{js,json,css,md,scss,tsx,ts}'",
"watch": "watch 'yarn build' lib",
"test": "TZ=UTC ./test.sh"
},
"files": [
"dist",
"assets"
],
"bin": {
"ts-reporter": "./dist/cli.js"
},
"devDependencies": {
"@types/chart.js": "^2.9.37",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.32",
"@types/sloc": "^0.2.0",
"@types/yargs": "^17.0.10",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"watch": "^1.0.2"
},
"dependencies": {
"chalk": "^5.0.1",
"chart.js": "^2.9.4",
"chartjs-node-canvas": "^3.2.0",
"date-fns": "^2.28.0",
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
"glob": "^8.0.1",
"glob-promise": "^4.2.2",
"lodash": "^4.17.21",
"sloc": "^0.2.1",
"yargs": "^17.5.0"
}
}