generated from gapitio/utility-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "@gapit/grafana-metric",
"description": "Retrieves metric value",
"version": "1.2.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf coverage dist",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint . --ext .ts,.js --fix",
"fix:prettier": "prettier --write .",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext .ts,.js",
"lint:prettier": "prettier --check .",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest --coverage",
"watch": "rollup -cw"
},
"devDependencies": {
"@grafana/data": "~8.1.4",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.0",
"jest-cli": "^27.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"pre-commit": [
"prepublishOnly"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gapitio/grafana-metric.git"
},
"author": "https://github.com/gapitio",
"bugs": {
"url": "https://github.com/gapitio/grafana-metric/issues"
},
"homepage": "https://github.com/gapitio/grafana-metric#readme",
"publishConfig": {
"access": "public"
}
}