-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "@lreading/ts-secrets",
"version": "1.0.4",
"description": "A typescript library for loading secrets from environment variables or files",
"main": "dist/index.js",
"public": false,
"scripts": {
"build": "npm-run-all lint audit test tsc",
"tsc": "tsc",
"lint": "eslint . --ext .ts --fix",
"audit": "pnpm audit --registry=https://registry.npmjs.org",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lreading/ts-secrets"
},
"author": "Leo Reading",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^27.5.2",
"@types/node": "^18.11.6",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-jest": "^27.5.1",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5"
},
"dependencies": {
"ts-node": "^10.9.2"
}
}