-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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": "@flxbl-io/sfdx-process-wrapper",
"version": "3.0.0",
"description": "Wraps around SFDXCommand to exeute it using a subprocess",
"author": "flxbl",
"homepage": "https://github.com/flxbl-io/sfp#readme",
"license": "MIT",
"main": "lib/index",
"types": "lib/index",
"directories": {
"lib": "lib"
},
"dependencies": {
"@flxbl-io/sfp-logger": "^5.0.1",
"fs-extra": "^9.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/node": "^10",
"rimraf": "^6.0.1",
"typescript": "^5"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/flxbl-io/sfdx-process-wrapper.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./lib && rimraf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json"
},
"bugs": {
"url": "https://github.com/flxbl-io/sfp/issues"
}
}