-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.29 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@imaware/secretenv",
"version": "0.0.1",
"description": "NodeJS utility for automatically resolving environment variables to secret values.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/imaware/secretenv.git"
},
"author": "Christopher Manzi <[email protected]>",
"license": "MIT",
"prepare": "tsc --project ./tsconfig.prod.json",
"scripts": {
"build": "tsc",
"build:test": "tsc --project ./tsconfig.test.json",
"build:prod": "tsc --project ./tsconfig.prod.json",
"build:doc": "jsdoc2md --files \"./src/**/*.ts\" --configure ./jsdoc2md.json > ./docs.md",
"build:watch": "tsc --watch",
"clean": "rimraf dist *.tsbuildinfo .eslintcache",
"commitlint": "commitlint",
"lint": "run-s eslint prettier:check",
"lint:fix": "run-s eslint:fix prettier:fix mdlint:fix",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "prettier \"**/*.ts\" \"**/*.js\" -l",
"prettier:fix": "prettier \"**/*.ts\" \"**/*.js\" --write",
"eslint": "eslint --report-unused-disable-directives .",
"eslint:fix": "eslint --report-unused-disable-directives . --fix",
"mdlint": "markdownlint -c .markdownlint.jsonc **.md",
"mdlint:fix": "markdownlint -c .markdownlint.jsonc -f **.md",
"prepare": "run-s clean build:prod",
"prepublish": "run-s prepare",
"pretest": "run-s rebuild",
"rebuild": "run-s lint:fix clean build:doc build:test",
"test": "jest",
"test:integration": "jest -c jest.integration.config.js",
"test:all": "yarn test && yarn test:integration",
"test:doc": "/bin/bash -c 'diff <(jsdoc2md --files \"./src/**/*.ts\" --configure ./jsdoc2md.json) docs.md'"
},
"dependencies": {
"@google-cloud/secret-manager": "^3.5.0",
"aws-sdk": "^2.926.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/config-conventional": "^15.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-eslint": "^10.1.0",
"commitlint": "^15.0.0",
"copyfiles": "^2.4.1",
"eslint": "^7.22.0",
"eslint-plugin-jsdoc": "^37.0.0",
"husky": "^7.0.1",
"jest": "^27.1.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.0.0",
"lint-staged": "^12.0.2",
"markdownlint-cli": "^0.30.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.0",
"typescript": "^4.2.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"set-value": "^4.0.1",
"strip-ansi": "^6.0.1",
"json-schema": "^0.4.0",
"markdown-it": "^12.3.2",
"node-forge": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**"
],
"lint-staged": {
"src/**.ts": [
"yarn eslint:fix",
"yarn prettier:fix"
],
"src/**/*.ts": [
"yarn eslint:fix",
"yarn prettier:fix"
],
"**.md": [
"yarn mdlint:fix"
]
}
}