-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.59 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
{
"name": "terraform-cloud-action",
"version": "2.0.4-rc.0",
"description": "GitHub action that creates a run in a Terraform Cloud workspace.",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/webpack --config src/webpack.config.babel.js --bail src/index.js -o dist/index.js",
"coverage": "node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/codecov --pipe",
"lint": "node_modules/.bin/eslint src",
"test": "nyc mocha --recursive --timeout 30000 --require @babel/register --reporter spec --bail src/test.js src/**/test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/addresscloud/terraform-cloud-action.git"
},
"keywords": [
"terraform",
"cloud",
"action",
"github"
],
"author": "Tomas Holderness",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/addresscloud/terraform-cloud-action/issues"
},
"homepage": "https://github.com/addresscloud/terraform-cloud-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"axios": "^0.21.1"
},
"devDependencies": {
"@addresscloud/eslint-config": "0.0.3",
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"codecov": "^3.7.2",
"eslint": "^6.8.0",
"eslint-plugin-jsdoc": "^15.12.1",
"mocha": "^7.2.0",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}