-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.33 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
89
90
91
92
{
"name": "@byu-oit/env-ssm",
"version": "3.4.0",
"description": "Gets params from your environment first, then from the ssm parameter store.",
"contributors": [
"Gary Crye <[email protected]>",
"Spencer Tuft <[email protected]>"
],
"main": "dist/env-ssm.js",
"types": "dist/env-ssm.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --colors",
"test:coverage": "jest --colors --coverage || exit 0",
"test:watch": "jest --colors --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byu-oit/env-ssm.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/byu-oit/env-ssm/issues"
},
"homepage": "https://github.com/byu-oit/env-ssm#readme",
"dependencies": {
"debug": "^4.3.1",
"lodash.chunk": "^4.2.0",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@aws-sdk/client-ssm": "^3.9.0",
"@byu-oit/dottfvars": "0.0.6",
"@tsconfig/node18": "^1.0.1",
"@types/debug": "^4.1.5",
"@types/jest": "^29.2.4",
"@types/lodash.chunk": "^4.2.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"env-var": "^7.0.0",
"eslint": "^8.29.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@aws-sdk/client-ssm": ">=3",
"env-var": "^7.0.0"
},
"optionalDependencies": {
"@byu-oit/dottfvars": "^0.0.6",
"dotenv": "^8.2.0"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"lint-staged": {
"*.ts": "npm run lint:fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}