-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.18 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
{
"name": "terraform-cloud",
"version": "0.0.0-development",
"description": "Terraform Cloud API wrapper",
"repository": {
"type": "git",
"url": "https://github.com/mijailr/terraform-cloud.git"
},
"author": "Mijail Rondon <mijail@hey.com>",
"license": "MIT",
"scripts": {
"build": "pika build",
"test": "jest --verbose",
"coverage": "jest --coverage",
"lint": "prettier --check '{src,test}/**/*.{js,json,ts}' README.md package.json",
"lint:fix": "prettier --write '{src,test}/**/*.{js,json,ts}' README.md package.json",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.0",
"@pika/plugin-build-web": "^0.9.0",
"@pika/plugin-ts-standard-pkg": "^0.9.0",
"@types/jest": "^26.0.13",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.11.0",
"husky": ">=4.3.0",
"jest": "^26.5.2",
"lint-staged": ">=10.3.0",
"nock": "^13.0.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"semantic-release-plugin-update-version-in-files": "^1.0.0",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"axios": "^0.21.1",
"camelcase-keys": "^6.2.2"
},
"bugs": {
"url": "https://github.com/mijailr/terraform-cloud/issues"
},
"homepage": "https://github.com/mijailr/terraform-cloud#readme",
"directories": {
"test": "test"
},
"keywords": [
"terraform",
"api-client",
"api-wrapper",
"terraform-cloud"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,md,json}": "prettier --write"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}