forked from ekmartin/check-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 944 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
36
37
38
{
"name": "@arkeero-forks/check-env",
"version": "1.6.2",
"description": "Makes sure that all required environment variables are set.",
"repository": {
"type": "git",
"url": "[email protected]:arkeero-tech/check-env.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/bin.js"
],
"main": "dist/index.js",
"bin": "dist/bin.js",
"scripts": {
"lint": "jshint --exclude-path .gitignore .",
"mocha": "istanbul cover _mocha && istanbul report cobertura",
"test": "npm run lint && npm run mocha",
"build": "tsc"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "internal"
},
"author": "Martin Ek <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.5",
"istanbul": "^0.4.2",
"jshint": "^2.13.6",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}