This repository has been archived by the owner on Sep 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.09 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
71
72
73
74
{
"name": "accelerate-metrics",
"version": "1.0.0",
"description": "A tool to calculate Accelerate DevOps metrics",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"lint": "eslint src/**/*.ts --cache --fix",
"format": "prettier --loglevel warn --write \"**/*.{js,ts,md}\"",
"all": "npm run build && npm run format && npm run lint && npm test && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbrudz/accelerate-metrics.git"
},
"author": "Steve Brudz",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sbrudz/accelerate-metrics/issues"
},
"homepage": "https://github.com/sbrudz/accelerate-metrics#readme",
"engines": {
"node": ">=12.14"
},
"dependencies": {
"@actions/core": "^1.2.6",
"csv-parse": "^4.12.0",
"heroku-client": "^3.1.0",
"luxon": "^1.24.1",
"mathjs": "^7.0.2",
"node-filter-async": "^2.0.0"
},
"devDependencies": {
"@heroku-cli/typescript-api-schema": "0.0.1",
"@types/ejs": "^3.0.4",
"@types/jest": "^26.0.20",
"@types/luxon": "^1.24.1",
"@types/mathjs": "^6.0.5",
"@types/node": "^12.12.6",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^3.10.1",
"@vercel/ncc": "^0.27.0",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"ejs": "^3.1.5",
"eslint": "^7.3.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-mock-console": "^1.0.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.5.0",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}