-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 3.01 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
{
"name": "@tinystacks/iac-utils",
"version": "0.0.15",
"description": "Stateless utility methods whose scope is outside of the TinyStacks domain.",
"main": "dist/index.js",
"scope": "@tinystacks",
"files": [
"dist",
"docs"
],
"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",
"docs": "npx typedoc src/index.ts && cp ./src/cli/README.md ./docs/cli.md",
"lint": "./node_modules/.bin/eslint ./src",
"lint-fix": "./node_modules/.bin/eslint --fix ./src",
"lint-tests": "./node_modules/.bin/eslint --config .eslintrc.test ./test",
"lint-fix-tests": "./node_modules/.bin/eslint --config .eslintrc.test --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",
"package": "npm pack && cp tinystacks-iac-utils-*.tgz tinystacks-iac-utils-latest.tgz",
"prepack": "npm run qa && npm run clean-build",
"prerelease": "npm version prerelease --preid=local --no-git-tag-version",
"publish-local": "npm run prerelease; bash ./localNpmLogin.sh; 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/cli/commands/smoke-test/parser/terraform/tinystacks-module-parser/hashicorp-aws/vpc.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 && open coverage/lcov-report/index.html",
"mt": "ts-node mt.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinystacks/iac-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tinystacks/iac-utils/issues"
},
"homepage": "https://github.com/tinystacks/iac-utils#readme",
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.isempty": "^4.4.7",
"@types/lodash.snakecase": "^4.1.7",
"@types/lodash.uniq": "^4.5.7",
"@types/lodash.upperfirst": "^4.3.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.16",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.7.4"
},
"dependencies": {
"lodash.camelcase": "^4.3.0",
"lodash.isempty": "^4.4.0",
"lodash.snakecase": "^4.1.1",
"lodash.uniq": "^4.5.0",
"lodash.upperfirst": "^4.3.1",
"prando": "^6.0.1"
}
}