forked from siimon/prom-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.42 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
{
"name": "prom-client",
"version": "11.0.0",
"description": "Client for prometheus",
"main": "index.js",
"files": ["lib/", "index.js", "index.d.ts"],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "npm run lint && npm run compile-typescript && npm run test-unit",
"lint": "eslint .",
"test-unit": "jest",
"compile-typescript": "tsc index.d.ts --noImplicitAny",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "[email protected]:siimon/prom-client.git"
},
"keywords": ["Prometheus", "Metrics", "Client"],
"author": "Simon Nyberg",
"license": "Apache-2.0",
"homepage": "https://github.com/siimon/prom-client",
"devDependencies": {
"eslint": "^4.1.1",
"eslint-plugin-prettier": "^2.1.2",
"express": "^4.13.3",
"husky": "^0.14.3",
"jest": "^22.4.2",
"lint-staged": "^7.0.0",
"lolex": "^2.1.3",
"prettier": "1.11.1",
"typescript": "^2.5.2"
},
"dependencies": {
"tdigest": "^0.1.1"
},
"types": "./index.d.ts",
"jest": {
"testEnvironment": "node",
"testRegex": ".*Test\\.js$"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.{ts,md,json}": ["prettier --write", "git add"],
".eslintrc": ["prettier --write", "git add"]
},
"prettier": {
"singleQuote": true,
"useTabs": true,
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false
}
},
{
"files": ".eslintrc",
"options": {
"parser": "json"
}
}
]
}
}