-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 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
{
"name": "@koopjs/cache-apache-ignite",
"version": "1.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc",
"tsc": "tsc",
"lint": "eslint src --ext .ts",
"lint:ci": "eslint src --ext .ts --rule linebreak-style:0 ",
"test": "jest",
"test:cov": "jest --coverage && npm run cov:badge",
"cov:badge": "coverage-badges --source coverage/coverage-summary.json --output ./coverage.svg",
"prepare": "npm run build",
"postpublish": "gh-release"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@koopjs/logger": "^5.0.0",
"@types/config": "^3.3.4",
"apache-ignite-client": "^1.0.0",
"config": "^3.3.11"
},
"devDependencies": {
"@koopjs/koop-core": "^10.4.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"coverage-badges-cli": "^1.2.5",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.0.0",
"gh-release": "^7.0.2",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"json-summary",
"json",
"text",
"lcov"
],
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"node_modules",
"test-config",
"interfaces"
],
"roots": [
"src",
"test"
]
},
"files": [
"dist"
]
}