-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.32 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
{
"name": "@ahoylabs/env-ts",
"version": "0.3.1",
"license": "MIT",
"author": "Ben Williams <[email protected]>",
"main": "dist/index.js",
"homepage": "https://github.com/ahoylabs/env-ts",
"repository": "https://github.com/ahoylabs/env-ts",
"bugs": "https://github.com/ahoylabs/env-ts/issues",
"types": "dist/index.d.ts",
"bin": {
"env-ts": "./bin.js"
},
"scripts": {
"build": "rm -rf dist && rm -rf *.tsbuildinfo && tsc --build",
"ci:lint": "eslint -f rdjson src",
"lint": "tsc && eslint src",
"publish:github": "yarn build && yarn publish --patch",
"test": "jest"
},
"devDependencies": {
"@types/jest": "29.2.4",
"@types/node": "^18.11.11",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@typescript-eslint/utils": "5.45.1",
"eslint": "^8.29.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "8.5.0",
"eslint-formatter-rdjson": "^1.0.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-toplevel": "^1.0.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"jest": "29.3.1",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"np": {
"releaseDraft": false
},
"dependencies": {
"ts-node": "^10.9.1"
}
}