-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "autometric",
"version": "2.0.0",
"description": "A library to create automated metrics over various async pattern",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "example",
"lib": "lib",
"test": "test"
},
"peerDependencies": {
"prom-client": "^11.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/freeport": "^1.0.21",
"@types/mocha": "^5.2.1",
"@types/request-promise": "^4.1.41",
"chai": "^4.1.2",
"freeport": "^1.0.5",
"istanbul": "^0.4.5",
"mocha": "^5.1.1",
"prom-client": "^11.0.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"ts-node": "^6.0.5",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.3"
},
"scripts": {
"transpile": "tsc -p .",
"lint": "tslint ts/*.ts",
"test": "mocha ts/*.spec.ts",
"dist": "npm run lint && npm run transpile && istanbul cover _mocha -- -- test/*.js",
"doc": "typedoc --out ./typedoc/ --mode file ts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atd-schubert/autometric.git"
},
"keywords": [
"prometheus",
"stream",
"promise",
"async"
],
"author": "Arne Schubert <atd.schubert@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/atd-schubert/autometric/issues"
},
"homepage": "https://github.com/atd-schubert/autometric#readme",
"dependencies": {
"@types/express": "^4.11.1"
}
}