-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.79 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
{
"name": "@tinystacks/aws-template-checks",
"version": "0.0.2",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"cleanup": "rm -rf dist || true && rm *.tgz || true",
"clean-build": "npm ci && npm run cleanup && npm run build",
"dependency-check": "./node_modules/.bin/depcheck",
"install-local-precloud": "npm i -D @tinystacks/precloud@local --@tinystacks:registry=http://local-npm-registry:4873",
"install-remote-precloud": "npm i -D @tinystacks/precloud@latest --@tinystacks:registry=https://registry.npmjs.org",
"lint": "./node_modules/.bin/eslint ./src",
"lint-fix": "./node_modules/.bin/eslint --fix ./src",
"lint-tests": "./node_modules/.bin/eslint --config .eslintrc.test.json ./test",
"lint-fix-tests": "./node_modules/.bin/eslint --config .eslintrc.test.json --fix ./test",
"major": "npm version major --no-git-tag-version",
"minor": "npm version minor --no-git-tag-version",
"patch": "npm version patch --no-git-tag-version",
"prepack": "npm run clean-build",
"prerelease": "npm version prerelease --preid=local --no-git-tag-version",
"publish-local": "npm run prerelease; npm publish --tag local --@tinystacks:registry=http://local-npm-registry:4873",
"qa": "npm run lint && npm run test-cov",
"test": "jest",
"test-cov": "jest --coverage",
"test-file": "jest ./test/vpc-quota-checks.test.ts",
"test-file-cov": "jest ./test/cli/commands/smoke-test/smoke-tests/aws/resource-tests/vpc-smoke-tests.test.ts --coverage",
"view-test-cov": "jest --coverage || true && open coverage/lcov-report/index.html",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinystacks/aws-template-checks.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tinystacks/aws-template-checks/issues"
},
"homepage": "https://github.com/tinystacks/aws-template-checks#readme",
"devDependencies": {
"@tinystacks/precloud": "^1.0.3",
"@types/jest": "^28.1.7",
"@types/lodash.isnil": "^4.0.7",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"depcheck": "^1.4.3",
"eslint": "^8.22.0",
"eslint-import-resolver-typescript": "^3.4.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^28.1.3",
"lodash.isempty": "^4.4.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.252.0",
"@aws-sdk/client-s3": "^3.252.0",
"@aws-sdk/client-service-quotas": "^3.252.0",
"@aws-sdk/credential-providers": "^3.252.0",
"lodash.isnil": "^4.0.0"
}
}