-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.83 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
{
"name": "dotenv-picker",
"version": "1.0.11",
"description": "Choose .env file when running your app",
"keywords": [
"dotenv",
"choose",
"pick",
".env"
],
"scripts": {
"build": "npm run clean && copy-files-from-to && tsc",
"clean": "rimraf ./dist",
"check:js": "node -r ./dist/select.js ./tests/check.js dotenv_config_path=10 dotenv_picker_remember_last",
"check:ts": "ts-node -r ./dist/select.js ./tests/check.ts dotenv_config_path=10 dotenv_picker_remember_last",
"start:js": "npm run build && npm run check:js",
"start:ts": "npm run build && npm run check:ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anton-nagornyi/dotenv-picker"
},
"author": "Anton Nagornyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/anton-nagornyi/dotenv-picker/issues"
},
"homepage": "https://github.com/anton-nagornyi/dotenv-picker#readme",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"ignore": "^5.1.8"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.2",
"@types/mock-fs": "^4.13.1",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"copy-files-from-to": "^3.2.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.2.5",
"mock-fs": "^5.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.3.4"
},
"bin": {
"dotenv-picker": "bin/dotenv-picker.js"
},
"copyFiles": [
{
"from": "package.json",
"to": "dist/package.json"
},
{
"from": "README.md",
"to": "dist/README.md"
},
{
"from": "LICENSE",
"to": "dist/LICENSE"
},
{
"from": "bin/*",
"to": "dist/bin"
}
]
}