-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 824 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 824 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
{
"name": "@nortech/reqenv",
"version": "1.6.0",
"description": "Require environment variables from your npm scripts with a self evident error message",
"main": "index.js",
"repository": "https://github.com/Nortech-ai/reqenv",
"author": "joao@nortech.ai",
"license": "MIT",
"private": false,
"bin": "index.js",
"files": [
"index.js"
],
"scripts": {
"run": "./index.ts",
"build": "tsc index.ts",
"install-locally": "yarn build && yarn global add file:$(pwd)",
"pub": "yarn build && yarn publish",
"dev": "nodemon index.ts"
},
"dependencies": {
"commander": "^9.4.0",
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/node": "^18.15.11",
"nodemon": "^2.0.19",
"package-json-type": "^1.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}