-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.85 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "node-env-run",
"version": "4.0.1",
"description": "Wrapper executable to load env variables from .env and run Node",
"repository": {
"url": "git@github.com:dkundel/node-env-run.git",
"type": "git"
},
"keywords": [
"dotenv",
"environment",
"variables",
"env",
".env",
"config",
"settings"
],
"author": "Dominik Kundel <dominik.kundel@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/common-tags": "^1.4.0",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/node": "^10.17.28",
"@types/yargs": "^15.0.5",
"common-tags": "^1.7.2",
"cross-spawn": "^7.0.3",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"pkginfo": "^0.4.1",
"upath": "^1.2.0",
"yargs": "^15.4.1"
},
"bin": {
"nodenv": "./dist/bin/node-env-run.js",
"node-env-run": "./dist/bin/node-env-run.js"
},
"types": "./dist/bin/node-env-run.d.ts",
"scripts": {
"contrib:generate": "all-contributors generate",
"contrib:add": "all-contributors add",
"prepublish": "npm run tsc",
"tsc": "tsc",
"build": "npm run tsc",
"lint": "eslint \"!(node_modules)/**/*.ts\"",
"pretest": "npm run lint",
"test": "jest"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^26.0.7",
"@types/mock-fs": "^4.10.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"all-contributors-cli": "^6.17.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"mock-fs": "^4.12.0",
"npm-run-all": "^4.0.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
}
}