-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 906 Bytes
/
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
{
"name": "process-env-checker",
"version": "1.0.3",
"description": "Check if all requested environment variables are present.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"process-env-checker": "dist/index.js"
},
"homepage": "https://github.com/homoky/process-env-checker",
"repository": {
"type": "git",
"url": "https://github.com/homoky/process-env-checker.git"
},
"bugs": {
"url": "https://github.com/homoky/process-env-checker/issues"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"prepublish": "yarn build",
"build": "tsc",
"test": "STRIPE_API_KEY=my-secret-key ts-node ./src/index.ts check ./examples/env.d.ts"
},
"keywords": [
"environmental variables",
"env",
"check"
],
"author": "Petr Homoky",
"license": "ISC",
"dependencies": {
"commander": "^9.4.1",
"typescript": "^4.9.3"
}
}