-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "build-stats",
"version": "1.8.0",
"description": "Calculate build stats",
"main": "dist/index.js",
"bin": "dist/cli.js",
"author": "Ajay Narain Mathur <[email protected]>",
"license": "MIT",
"keywords": [
"build",
"stats",
"ci",
"continous integration",
"perf"
],
"repository": {
"type": "git",
"url": "https://github.com/ajaymathur/build-stats.git"
},
"files": [
"dist"
],
"engines": {
"node": ">=8.5.0"
},
"scripts": {
"build": "rm -rf dist && tsc && chmod +x dist/cli.js",
"dev": "ts-node ./cli.ts",
"format": "prettier --write .",
"prepublishOnly": "yarn build",
"test": "jest",
"typecheck": "tsc-files --noEmit"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-table": "^0.3.1",
"date-fns": "^1.29.0",
"default-pager": "^1.1.0",
"got": "^8.0.1",
"inquirer": "^8.2.0",
"left-pad": "^1.2.0",
"lodash.groupby": "^4.6.0",
"lodash.pick": "^4.4.0",
"meow": "^v9.0.0",
"mkdirp": "^0.5.1",
"ora": "^5.4.1",
"p-limit": "^2.0.0",
"rimraf-promise": "^2.0.0",
"string-to-stream": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/inquirer": "^8.2.0",
"@types/jest": "^27.0.3",
"@types/lodash.pick": "^4.4.6",
"@types/meow": "^5.0.0",
"@types/node": "^16.11.12",
"babel-jest": "^27.4.4",
"chai": "^4.3.4",
"fixturez": "^1.0.1",
"jest": "^27.4.4",
"prettier": "2.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^8.6.2",
"tsc-files": "^1.1.3",
"typescript": "3.9.10"
}
}