-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "@artsy/multienv",
"version": "1.2.0",
"description": "Load multiple dotenv style environment files.",
"main": "dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"clean": "rm -rf dist/",
"compile": "tsc",
"prepublish": "yarn test && yarn clean && yarn compile",
"release": "auto shipit",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artsy/multienv.git"
},
"keywords": [
"dotenv",
"sharedenv",
"multienv"
],
"contributors": [
"Cameron Rollheiser <Cameron.Rollheiser@artsymail.com>",
"Ozzie Vasdi <Osvaldas.Vasdi@artsymail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/artsy/multienv/issues"
},
"homepage": "https://github.com/artsy/multienv#readme",
"devDependencies": {
"@artsy/auto-config": "^1.1.0",
"@types/jest": "^27.0.2",
"@types/node": "^14.17.5",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"dotenv": "^10.0.0"
}
}