-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 803 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 803 Bytes
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
{
"name": "@rettgerst/env-proxy",
"version": "0.2.0",
"description": "",
"main": "dist/env-proxy.js",
"types": "dist/env-proxy.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prepare": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**.ts"
},
"keywords": [],
"author": "rett gerst",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.30.0",
"@typescript-eslint/parser": "^8.30.0",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-license-header": "^0.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.0"
}
}