-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 2.22 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
{
"name": "@netlify/plugin-secrets-manager",
"version": "1.1.1",
"description": "Inject Secrets into the Netlify Build Process",
"main": "src/main.js",
"files": [
"src/**/*.js",
"manifest.yml"
],
"scripts": {
"prepublishOnly": "npm ci && npm test",
"test": "run-s format test:dev",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier",
"test:dev": "run-s test:dev:*",
"test:ci": "run-s test:ci:*",
"test:dev:ava": "ava",
"test:ci:ava": "nyc -r lcovonly -r text -r json ava",
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{src,test,.github}/**/*.{js,md,html}\" \"*.{js,md,html}\" \".*.{js,md,html}\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \"{src,test,.github}/**/*.{js,md,yml,json,html}\" \"*.{js,yml,json,html}\" \".*.{js,yml,json,html}\" \"!**/package-lock.json\" \"!package-lock.json\""
},
"ava": {
"verbose": true,
"timeout": "120s"
},
"keywords": [],
"license": "MIT",
"repository": "netlify/netlify-plugin-secrets-manager",
"bugs": {
"url": "https://github.com/netlify/netlify-plugin-secrets-manager/issues"
},
"author": "Netlify Inc.",
"directories": {
"test": "test"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@netlify/build": "^26.5.3",
"@netlify/eslint-config-node": "^5.1.8",
"ava": "^4.0.0",
"husky": "^7.0.0",
"nyc": "^15.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.14.0 || >=16.0.0"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.19.0",
"chalk": "^4.1.1"
}
}