-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "simple-process-metrics",
"version": "1.0.2",
"description": "Simple Node.js process metrics",
"keywords": [
"metrics",
"process-metrics"
],
"homepage": "https://github.com/rafalmaciejewski/simple-process-metrics#readme",
"bugs": {
"url": "https://github.com/rafalmaciejewski/simple-process-metrics/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafalmaciejewski/simple-process-metrics.git"
},
"license": "MIT",
"author": "Rafał Maciejewski",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest",
"test:cov": "jest --coverage"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^16.3.2",
"coveralls": "^3.0.2",
"husky": "^4.0.3",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"ts-jest": "^26.5.2",
"tslint": "^5.11.0",
"tslint-config-getresponse-base": "^1.0.0",
"typescript": "^3.1.6"
},
"publishConfig": {
"access": "public"
}
}