-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.36 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
{
"name": "@jkcfg/kubernetes",
"version": "0.6.2",
"author": "The jk Authors",
"bugs": {
"url": "https://github.com/jkcfg/kubernetes/issues"
},
"dependencies": {
"@jkcfg/std": "^0.3.2"
},
"description": "jk Kubernetes library",
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.2",
"handlebars": "^4.1.1"
},
"homepage": "https://github.com/jkcfg/kubernetes#readme",
"keywords": [
"configuration",
"code",
"generation"
],
"license": "Apache-2.0",
"module": "kubernetes.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jkcfg/kubernetes.git"
},
"scripts": {
"build": "make",
"lint": "eslint src",
"test": "jest"
},
"jest": {
"preset": "ts-jest/presets/js-with-babel",
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
},
"testMatch": [
"<rootDir>/tests/*.test.js"
],
"transformIgnorePatterns": [
"<rootDir>/@jkcfg/"
],
"modulePathIgnorePatterns": [
"<rootDir>/@jkcfg/"
],
"moduleDirectories": [
"<rootDir>/node_modules"
]
}
}