-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.71 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "arg-env",
"version": "2.0.0",
"description": "Node.js package to work with `.env` files in the same way as docker and docker-compose via `--env-file` or `\"env_file\"` in package.json",
"homepage": "https://github.com/askirmas/arg-env",
"scripts": {
"setup": "./setup.sh",
"dev": "npm run jest -- --watch --coverage=false",
"build": "npm run compile",
"prebuild": "npm run test",
"postbuild": "npm run e2e",
"compile": "tsc --project tsconfig.build.json",
"precompile": "exit 0; rm -rf dist types",
"postcompile": "./postcompile.sh",
"e2e": "cd __e2e__ && npm run test",
"test": "npm run jest",
"pretest": "jest --clearCache && cd src/specs && ./get.sh",
"jest": "jest --config=jest.config.json --runInBand",
"prejest": "npm run precompile",
"release": "np",
"research": "npm run research/syntax && npm run research/closure && npm run research/overwrite",
"research/syntax": "cd ./research/syntax && rm -rf output && ts-node-script ./index.ts && ./run.sh && ./output_md-start.sh && ts-node-script ./output.ts",
"research/closure": "rm -rf ./research/closure/output && ts-node-script ./research/closure/index.ts && cd ./research/closure/output && cp ../template/docker/get.js docker/get.js && bash run.sh",
"research/overwrite": "rm -rf ./research/overwrite/output && ts-node-script ./research/overwrite/index.ts && cd ./research/overwrite/output && cp ../template/docker/get.js docker/get.js && bash run.sh",
"ci": "npm ci --prefer-offline --no-audit --silent --quiet --no-progress"
},
"keywords": [
".env",
"env",
"dotenv",
"environment",
"variables",
"loader",
"parser",
"node",
"config",
"docker",
"compose",
"cli",
"command",
"line",
"arguments",
"env_file",
"env-file"
],
"bugs": {
"url": "https://github.com/askirmas/arg-env/labels/bug"
},
"author": "Andrii Kirmas <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.1",
"@types/js-yaml": "^4.0.3",
"@types/node": "^16.9.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"dotenv-extended": "^2.9.0",
"envfile": "^6.17.0",
"git-hooks-wrapper": "^0.7.1",
"globby": "^11.0.4",
"jest": "^27.1.1",
"js-yaml": "^4.1.0",
"np": "^7.5.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"publishConfig": {
"access": "public"
},
"np": {
"yarn": false,
"branch": "main",
"2fa": false,
"test-script": "build"
},
"files": [
"dist",
"types"
],
"engines": {
"node": ">=10 <17"
},
"types": "types",
"main": "dist/index.js"
}