-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 1.67 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
{
"name": "dotenvi",
"version": "0.0.3",
"author": "Ben Ross",
"license": "MIT",
"homepage": "https://github.com/b3ross/dotenvi#readme",
"bugs": {
"url": "https://github.com/b3ross/dotenvi/issues"
},
"scripts": {
"build": "yarn tsc",
"test": "yarn jest",
"precommit": "lint-staged",
"release": "semantic-release",
"example": "pushd example && IA_ENV=example node ../dist/index.js -f env.yml -s development && popd"
},
"bin": {
"dotenvi": "dist/index.js"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/*.test.(ts|js)"
],
"testEnvironment": "node",
"coverageDirectory": "./coverage",
"collectCoverage": true
},
"dependencies": {
"@types/argparse": "^1.0.33",
"@types/bluebird": "^3.5.20",
"@types/js-yaml": "^3.11.1",
"@types/node": "^9.6.4",
"argparse": "^1.0.10",
"aws-credstash": "^3.0.0",
"aws-sdk": "^2.567.0",
"bluebird": "^3.5.1",
"js-yaml": "^3.11.0"
},
"devDependencies": {
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.0",
"semantic-release": "^15.1.7",
"semantic-release-cli": "^3.6.6",
"ts-jest": "^22.4.4",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/b3ross/dotenvi.git"
},
"keywords": [
"dotenv",
"yaml",
"config",
"environment"
],
"lint-staged": {
"*.{ts,json}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}