-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.59 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
{
"author": "The jk Authors",
"bugs": {
"url": "https://github.com/jkcfg/grafana/issues"
},
"dependencies": {},
"description": "Write grafana dashboards with TypeScript",
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@jkcfg/std": "^0.2.7",
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.10.2",
"babel-jest": "^24.8.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.4.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3"
},
"homepage": "https://github.com/jkcfg/grafana#readme",
"jest": {
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
},
"moduleDirectories": [
"\u003crootDir\u003e/node_modules"
],
"modulePathIgnorePatterns": [
"\u003crootDir\u003e/@jkcfg/"
],
"preset": "ts-jest/presets/js-with-babel",
"testMatch": [
"\u003crootDir\u003e/tests/*.test.js",
"\u003crootDir\u003e/tests/*.test.ts"
],
"transformIgnorePatterns": [
"\u003crootDir\u003e/@jkcfg/"
]
},
"keywords": [
"configuration",
"code",
"generation"
],
"license": "Apache-2.0",
"module": "grafana.js",
"name": "@jkcfg/grafana",
"repository": {
"type": "git",
"url": "git+https://github.com/jkcfg/grafana.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint {src,tests}/**/*.ts",
"test": "jest"
},
"version": "0.1.0"
}