-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.2 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@hexlabs/async-api-ts",
"version": "1.0.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"start": "ts-node src/",
"generate": "ts-node generate.ts",
"prepare": "husky install",
"test": "jest --ci --runInBand --coverage --reporters=default --reporters=jest-junit",
"lint": "eslint **/*.ts"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:@typescript-eslint/recommended"
],
"env": {
"node": true,
"es6": true,
"jest/globals": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint/eslint-plugin",
"jest"
],
"rules": {
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"jest/expect-expect": 0
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "template",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm outdated"
}
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"reporters": [
"default",
"jest-junit"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"homepage": "",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.18.8",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^29.0.3",
"jest-junit": "^10.0.0",
"json-loader": "^0.5.7",
"node-loader": "^0.6.0",
"ts-jest": "^29.0.3",
"ts-loader": "^6.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@hexlabs/json-schema-to-ts": "^1.1.8"
}
}