-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.45 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@mollitia/prometheus",
"version": "0.0.8",
"description": "Prometheus Mollitia Addon",
"main": "dist/mollitia-prometheus.umd.js",
"module": "dist/mollitia-prometheus.es5.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Jérémie Pichon <jeremie.pichon@genesys.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/genesys/mollitia-prometheus"
},
"bugs": {
"url": "https://github.com/genesys/mollitia-prometheus/issues"
},
"keywords": [
"mollitia",
"mollitia-prometheus",
"resiliency",
"resilience",
"node",
"nodejs",
"javascript",
"typescript",
"monitoring",
"time-series",
"metrics",
"alerting",
"prometheus",
"graphing"
],
"scripts": {
"install:all": "npm i && cd ./docs && npm i",
"dev": "run-p dev:lib dev:docs",
"dev:lib": "npm run build:lib:tsc && run-p dev:lib:tsc dev:lib:rollup",
"dev:lib:tsc": "tsc --watch --module commonjs",
"dev:lib:rollup": "rollup -c rollup.config.ts -w",
"dev:docs": "cd docs && npm run dev",
"lint": "run-s lint:lib lint:docs",
"lint:fix": "run-s lint:lib:fix lint:docs:fix",
"lint:lib": "eslint . --ext .ts",
"lint:docs": "cd docs && npm run lint",
"lint:lib:fix": "eslint . --ext .ts --fix",
"lint:docs:fix": "cd docs && npm run lint:fix",
"test": "run-s test:lib test:docs",
"test:lib": "jest",
"test:docs": "cd docs && npm run test",
"build": "run-s build:lib build:docs",
"build:lib": "rimraf dist && run-s build:lib:tsc build:lib:rollup",
"build:lib:tsc": "tsc --module commonjs",
"build:lib:rollup": "rollup -c rollup.config.ts",
"build:docs": "cd docs && npm run build",
"serve": "cd docs && npm run serve"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"eslint": "7.24.0",
"jest": "26.6.3",
"mollitia": "0.0.6",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.45.2",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "26.5.4",
"tslib": "2.2.0",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"dependencies": {}
}