-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.85 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@qlever-llc/interface2class",
"version": "1.1.0",
"author": "Alex <alex@qlever.io>",
"description": "TypeScript library for making classes from interfaces without repeating the properties",
"homepage": "https://github.com/Qlever-LLC/interface2class",
"repository": {
"type": "git",
"url": "https://github.com/qlever-llc/interface2class"
},
"main": "./src/index.mjs",
"types": "./src/index.d.ts",
"exports": {
"import": "./src/index.mjs",
"types": "./src/index.d.ts"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"files": [
"src/**/*"
],
"keywords": [
"typescript",
"class",
"interface"
],
"scripts": {
"build": "tsc -b",
"start": "node ${INSPECT:-} --enable-source-maps dist/index.js",
"test": "yarn build test && c8 ava",
"test:debug": "ava -T 60m -svc 1 --no-worker-threads",
"lint": "eslint ."
},
"ava": {
"failFast": false,
"files": [
"**/*.test.ts"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"src/": "dist/",
"test/": ".test/"
},
"compile": false
}
},
"c8": {
"reporter": [
"text",
"lcov"
],
"all": true,
"src": "src",
"exclude": [
"*.d.ts",
".pnp.*",
".test"
]
},
"license": "Apache-2.0",
"peerDependencies": {
"type-fest": "*"
},
"peerDependenciesMeta": {
"type-fest": {
"optional": true
}
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@tsconfig/node16": "^16.1.1",
"@types/node": "^16.18.87",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@yarnpkg/sdks": "^3.1.0",
"ava": "6.1.2",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^3.0.0",
"eslint-plugin-array-func": "^5.0.1",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-escompat": "^3.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-security": "^2.1.1",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-unicorn": "^51.0.1",
"prettier": "^3.2.5",
"type-fest": "^4.11.1",
"typescript": "^5.4.2"
},
"packageManager": "yarn@4.1.1",
"volta": {
"node": "20.11.1"
}
}