-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
{
"name": "@databraid/env-util",
"version": "1.1.7",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test",
"lint": "./node_modules/eslint/bin/eslint.js --fix .",
"update-version": "./scripts/update-version",
"addrc": "./scripts/addrc",
"update-and-publish": "npm run addrc && npm run update-version && npm publish"
},
"keywords": [],
"private": false,
"author": "@databraid",
"license": "MIT",
"dependencies": {
"aws-sdk": "2.95.0",
"minimist": "1.2.0"
},
"devDependencies": {
"chai": "4.1.1",
"mocha": "3.5.0",
"sinon": "3.2.0",
"eslint": "4.4.1",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0"
},
"description": "This package will fetch the contents of a file stored in AWS S3 and write them to a `.env` file. The intention of this package is that it be run by a deployed container at its creation in order to add environmental variable secrets to the running source code programmatically.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronanfitz/env-util.git"
},
"bugs": {
"url": "https://github.com/ronanfitz/env-util/issues"
},
"homepage": "https://github.com/ronanfitz/env-util#readme"
}