-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "sonar-deploy-action",
"version": "1.0.0",
"description": "A Github action to deploy applications to SONAR",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha src/*.test.js src/**/*.test.js",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TakeScoop/sonar-deploy-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TakeScoop/sonar-deploy-action/issues"
},
"homepage": "https://github.com/TakeScoop/sonar-deploy-action#readme",
"devDependencies": {
"@vercel/ncc": "0.27.0",
"chai": "4.3.3",
"eslint": "7.22.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"mocha": "8.3.1",
"nock": "13.0.11",
"sinon": "9.2.4"
},
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "4.0.0",
"axios": "0.21.1",
"google-auth-library": "7.0.2",
"js-yaml": "4.0.0",
"lodash": "4.17.21"
}
}