forked from tiagonnascimento/sfdx-orgdev-build-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "sfdx-orgdev-build-deploy",
"version": "1.0.0",
"description": "SFDX Org Development Model Build & Deploy action",
"main": "index.js",
"scripts": {
"lint": "eslint src/index.js",
"package": "ncc build src/index.js -o dist",
"test": "eslint src/index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tiagonnascimento/sfdx-orgdev-build-deploy.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Salesforce",
"SFDX",
"Org Development Model"
],
"author": "Tiago Nascimento <[email protected]>",
"contributors": [
"Manuel Cortes <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tiagonnascimento/sfdx-orgdev-build-deploy/issues"
},
"homepage": "https://github.com/tiagonnascimento/sfdx-orgdev-build-deploy#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0",
"properties-reader": "^2.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@vercel/ncc": "^0.24.0",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}