-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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": "prom-json",
"version": "1.0.0",
"description": "A library that parses Prometheus exporter data and converts it to a JSON format",
"main": "index.js",
"author": "Kevin Hendry",
"license": "MIT",
"private": false,
"ts-standard": {
"env": [
"node",
"jest"
]
},
"scripts": {
"build": "tsc",
"build:all": "yarn run clean && yarn run test:unit && yarn run build",
"clean": "rm -rf ./dist ./docs ./coverage",
"test:unit": "jest --passWithNoTests",
"test:lint": "eslint **/*.ts"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"standard": "^16.0.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"prom-client": "^13.1.0"
}
}