-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
104 lines (104 loc) · 2.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "sfdx-falcon",
"description": "A plugin for the Salesforce CLI that enables and enhances implementation of the SFDX-Falcon template.",
"version": "0.0.93",
"author": "Vivek M. Chawla @VivekMChawla",
"bugs": "https://github.com/sfdx-isv/sfdx-falcon/issues",
"dependencies": {
"@oclif/command": "1.5.13",
"@oclif/config": "1.12.12",
"@oclif/errors": "1.2.2",
"@salesforce/command": "1.5.1",
"@salesforce/core": "1.3.3",
"chalk": "2.4.2",
"debug": "4.1.1",
"falcon-listr-update-renderer": "0.4.2",
"inquirer": "6.3.1",
"listr": "0.14.3",
"lodash": "4.17.11",
"pad": "3.0.1",
"request-promise-native": "1.0.7",
"rxjs": "6.5.1",
"sfdx-falcon-appx-demo-kit": "0.0.92",
"sfdx-falcon-appx-package-kit": "0.0.4",
"shelljs": "0.8.3",
"tslib": "1.9.3",
"unzipper": "0.9.11",
"uuid": "3.3.2",
"yeoman-environment": "2.3.4",
"yeoman-generator": "3.2.0",
"yosay": "2.0.2"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.0",
"@oclif/plugin-help": "2.1.6",
"@oclif/test": "1.2.4",
"@salesforce/dev-config": "1.4.4",
"@types/chai": "^4.1.7",
"@types/jsforce": "^1.9.5",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"@types/read-pkg": "^4.0.0",
"@types/shelljs": "^0.8.5",
"@types/yeoman-generator": "^3.1.2",
"@types/yosay": "^0.0.29",
"chai": "^4.2.0",
"cross-spawn": "^6.0.5",
"del": "^4.1.1",
"globby": "^9.2.0",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.22.0",
"nyc": "^14.1.0",
"sinon": "^7.3.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8.0.0"
},
"falcon": {
"sfdcApiVersion": "45.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
".oclif.manifest.json"
],
"homepage": "https://sfdx-isv.github.io/sfdx-falcon/",
"keywords": [
"salesforce",
"sfdx",
"sfdx-falcon",
"sfdx-plugin",
"appexchange",
"appexchange-demo-kit",
"appexchange-package-kit",
"adk",
"apk"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"adk": {
"description": "AppExchange Demo Kit commands"
},
"apk": {
"description": "AppExchange Package Kit commands"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "sfdx-isv/sfdx-falcon",
"scripts": {
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"posttest": "tslint -p test -t stylish",
"prepare": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}