-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.7 KB
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
{
"name": "@tinystacks/precloud",
"version": "1.0.16",
"description": "An open source command line interface that runs checks on infrastructure as code to catch potential deployment issues before deploying.",
"main": "dist/exported-types.js",
"files": [
"dist"
],
"bin": {
"precloud": "dist/index.js"
},
"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-remote": "npm i --@tinystacks:registry=https://registry.npmjs.org",
"install-local": "npm i --@tinystacks:registry=http:////local-npm-registry:4873",
"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/commands/check/parser/aws-cdk/index.test.ts",
"test-file-cov": "jest ./test/cli/commands/check/checks/aws/resource-tests/vpc-checks.test.ts --coverage",
"view-test-cov": "jest --coverage && open coverage/lcov-report/index.html",
"prepare": "husky install"
},
"author": "",
"license": "BSD-3-Clause",
"dependencies": {
"colors": "^1.4.0",
"commander": "^10.0.0",
"lodash.isnil": "^4.0.0",
"lodash.isplainobject": "^4.0.6"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/lodash.isnil": "^4.0.7",
"@types/lodash.isplainobject": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"depcheck": "^1.4.3",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lodash.isempty": "^4.4.0",
"ts-jest": "^29.0.5"
},
"peerDependencies": {
"@tinystacks/aws-cdk-parser": "0.x",
"@tinystacks/aws-resource-checks": "0.x",
"@tinystacks/aws-template-checks": "0.x",
"@tinystacks/terraform-module-parser": "0.x",
"@tinystacks/terraform-resource-parser": "0.x"
}
}