-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 KB
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": "qfpm",
"version": "1.1.3",
"description": "Salesforce package management tool set for mananging dependencies between packages",
"main": "index.js",
"man": "./README.md",
"keywords": [
"salesforce",
"package",
"manager",
"sfdx"
],
"scripts": {
"preinstall": "bash ./bin/preinstall.sh",
"postinstall": "node ./bin/postinstall.js"
},
"author": "Angus Alves",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/gussamer/qfpm.git"
},
"bugs": {
"url": "https://github.com/gussamer/qfpm/issues"
},
"homepage": "https://github.com/gussamer/qfpm#readme",
"bin":{
"qbuild": "./src/build.sh",
"qclean": "./src/clean.sh",
"qdeploy": "./src/deploy.sh",
"qgetprojectname": "./src/getprojectname.js",
"qgetsrcfolders": "./src/getsrcfolders.js",
"qisqfpm": "./src/isqfpm.js",
"qisscratched": "./src/isscratched.js",
"qpostinstall": "./src/postinstall.sh",
"qpreinstall": "./src/preinstall.sh",
"qpush": "./src/push.sh",
"qremovedepends": "./src/removedepends.sh",
"qscratch": "./src/scratch.sh",
"qsetup": "./src/setup.sh",
"qtest": "./src/test.sh"
}
}