-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "@kie/build-chain-configuration-reader",
"version": "3.1.4",
"description": "A library to read build-chain tool configuration files",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"scripts": {
"build": "tsc && tsc-alias",
"test": "jest --passWithNoTests",
"prepare": "husky install",
"test:report": "npm test -- --coverage --testResultsProcessor=jest-sonar-reporter",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiegroup/build-chain-configuration-reader.git"
},
"author": "Enrique Mingorance Cano <[email protected]>",
"contributors": [
"Shubh Bapna <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kiegroup/build-chain-configuration-reader/issues"
},
"homepage": "https://github.com/kiegroup/build-chain-configuration-reader#readme",
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-sonar-reporter": "^2.0.0",
"nock": "^13.2.9",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.7.3"
},
"dependencies": {
"ajv": "^8.11.0",
"axios": "^0.27.2",
"yaml": "^2.1.1"
}
}