|
1 | 1 | { |
2 | | - "name": "prom-client", |
3 | | - "version": "11.5.2", |
4 | | - "description": "Client for prometheus", |
5 | | - "main": "index.js", |
6 | | - "files": [ |
7 | | - "lib/", |
8 | | - "index.js", |
9 | | - "index.d.ts" |
10 | | - ], |
11 | | - "engines": { |
12 | | - "node": ">=6.1" |
13 | | - }, |
14 | | - "scripts": { |
15 | | - "benchmarks": "node ./benchmarks/index.js", |
16 | | - "test": "npm run lint && npm run compile-typescript && npm run test-unit", |
17 | | - "lint": "eslint .", |
18 | | - "test-unit": "jest", |
19 | | - "compile-typescript": "tsc --project ." |
20 | | - }, |
21 | | - "repository": { |
22 | | - "type": "git", |
23 | | - "url": "git@github.com:siimon/prom-client.git" |
24 | | - }, |
25 | | - "keywords": [ |
26 | | - "Prometheus", |
27 | | - "Metrics", |
28 | | - "Client" |
29 | | - ], |
30 | | - "author": "Simon Nyberg", |
31 | | - "license": "Apache-2.0", |
32 | | - "homepage": "https://github.com/siimon/prom-client", |
33 | | - "devDependencies": { |
34 | | - "@clevernature/benchmark-regression": "^1.0.0", |
35 | | - "eslint": "^5.6.0", |
36 | | - "eslint-config-prettier": "^4.3.0", |
37 | | - "eslint-plugin-node": "^8.0.0", |
38 | | - "eslint-plugin-prettier": "^3.0.1", |
39 | | - "express": "^4.13.3", |
40 | | - "husky": "^1.3.1", |
41 | | - "jest": "^24.8.0", |
42 | | - "lint-staged": "^7.0.0", |
43 | | - "lolex": "^4.0.1", |
44 | | - "prettier": "1.17.1", |
45 | | - "typescript": "^3.0.3" |
46 | | - }, |
47 | | - "dependencies": { |
48 | | - "tdigest": "^0.1.1" |
49 | | - }, |
50 | | - "types": "./index.d.ts", |
51 | | - "jest": { |
52 | | - "testEnvironment": "node", |
53 | | - "testRegex": ".*Test\\.js$" |
54 | | - }, |
55 | | - "lint-staged": { |
56 | | - "*.js": [ |
57 | | - "eslint --fix", |
58 | | - "git add" |
59 | | - ], |
60 | | - "*.{ts,md,json,yml}": [ |
61 | | - "prettier --write", |
62 | | - "git add" |
63 | | - ], |
64 | | - ".{eslintrc,travis.yml}": [ |
65 | | - "prettier --write", |
66 | | - "git add" |
67 | | - ] |
68 | | - }, |
69 | | - "prettier": { |
70 | | - "singleQuote": true, |
71 | | - "useTabs": true, |
72 | | - "overrides": [ |
73 | | - { |
74 | | - "files": "*.md", |
75 | | - "options": { |
76 | | - "useTabs": false |
77 | | - } |
78 | | - }, |
79 | | - { |
80 | | - "files": ".eslintrc", |
81 | | - "options": { |
82 | | - "parser": "json" |
83 | | - } |
84 | | - } |
85 | | - ] |
86 | | - }, |
87 | | - "husky": { |
88 | | - "hooks": { |
89 | | - "pre-commit": "lint-staged" |
90 | | - } |
91 | | - } |
| 2 | + "name": "prom-client", |
| 3 | + "version": "11.5.3", |
| 4 | + "description": "Client for prometheus", |
| 5 | + "main": "index.js", |
| 6 | + "files": [ |
| 7 | + "lib/", |
| 8 | + "index.js", |
| 9 | + "index.d.ts" |
| 10 | + ], |
| 11 | + "engines": { |
| 12 | + "node": ">=6.1" |
| 13 | + }, |
| 14 | + "scripts": { |
| 15 | + "benchmarks": "node ./benchmarks/index.js", |
| 16 | + "test": "npm run lint && npm run compile-typescript && npm run test-unit", |
| 17 | + "lint": "eslint .", |
| 18 | + "test-unit": "jest", |
| 19 | + "compile-typescript": "tsc --project ." |
| 20 | + }, |
| 21 | + "repository": { |
| 22 | + "type": "git", |
| 23 | + "url": "git@github.com:siimon/prom-client.git" |
| 24 | + }, |
| 25 | + "keywords": [ |
| 26 | + "Prometheus", |
| 27 | + "Metrics", |
| 28 | + "Client" |
| 29 | + ], |
| 30 | + "author": "Simon Nyberg", |
| 31 | + "license": "Apache-2.0", |
| 32 | + "homepage": "https://github.com/siimon/prom-client", |
| 33 | + "devDependencies": { |
| 34 | + "@clevernature/benchmark-regression": "^1.0.0", |
| 35 | + "eslint": "^5.6.0", |
| 36 | + "eslint-config-prettier": "^4.3.0", |
| 37 | + "eslint-plugin-node": "^8.0.0", |
| 38 | + "eslint-plugin-prettier": "^3.0.1", |
| 39 | + "express": "^4.13.3", |
| 40 | + "husky": "^1.3.1", |
| 41 | + "jest": "^24.8.0", |
| 42 | + "lint-staged": "^7.0.0", |
| 43 | + "lolex": "^4.0.1", |
| 44 | + "prettier": "1.17.1", |
| 45 | + "typescript": "^3.0.3" |
| 46 | + }, |
| 47 | + "dependencies": { |
| 48 | + "tdigest": "^0.1.1" |
| 49 | + }, |
| 50 | + "types": "./index.d.ts", |
| 51 | + "jest": { |
| 52 | + "testEnvironment": "node", |
| 53 | + "testRegex": ".*Test\\.js$" |
| 54 | + }, |
| 55 | + "lint-staged": { |
| 56 | + "*.js": [ |
| 57 | + "eslint --fix", |
| 58 | + "git add" |
| 59 | + ], |
| 60 | + "*.{ts,md,json,yml}": [ |
| 61 | + "prettier --write", |
| 62 | + "git add" |
| 63 | + ], |
| 64 | + ".{eslintrc,travis.yml}": [ |
| 65 | + "prettier --write", |
| 66 | + "git add" |
| 67 | + ] |
| 68 | + }, |
| 69 | + "prettier": { |
| 70 | + "singleQuote": true, |
| 71 | + "useTabs": true, |
| 72 | + "overrides": [ |
| 73 | + { |
| 74 | + "files": "*.md", |
| 75 | + "options": { |
| 76 | + "useTabs": false |
| 77 | + } |
| 78 | + }, |
| 79 | + { |
| 80 | + "files": ".eslintrc", |
| 81 | + "options": { |
| 82 | + "parser": "json" |
| 83 | + } |
| 84 | + } |
| 85 | + ] |
| 86 | + }, |
| 87 | + "husky": { |
| 88 | + "hooks": { |
| 89 | + "pre-commit": "lint-staged" |
| 90 | + } |
| 91 | + } |
92 | 92 | } |
0 commit comments