forked from forcedotcom/sfdx-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.81 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
{
"name": "@salesforce/core",
"version": "2.0.0",
"description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
"main": "lib/exported",
"license": "BSD-3-Clause",
"scripts": {
"build": "yarn sfdx-build",
"ci-docs": "yarn sfdx-ci-docs",
"clean": "yarn sfdx-clean",
"clean-all": "yarn sfdx-clean all",
"compile": "yarn sfdx-compile",
"docs": "yarn sfdx-docs",
"format": "yarn sfdx-format",
"lint": "yarn sfdx-lint",
"lint-fix": "yarn sfdx-lint --fix",
"postcompile": "tsc -p test; tsc -p typedocExamples",
"prepack": "yarn sfdx-build",
"test": "yarn sfdx-test"
},
"keywords": [
"force",
"salesforce",
"sfdx",
"salesforcedx"
],
"files": [
"docs",
"lib",
"messages",
"!lib/**/*.map"
],
"husky": {
"hooks": {
"commit-msg": "yarn sfdx-husky-commit-msg",
"pre-commit": "yarn sfdx-husky-pre-commit",
"pre-push": "yarn sfdx-husky-pre-push"
}
},
"dependencies": {
"@salesforce/kit": "^1.0.0",
"@salesforce/ts-sinon": "^1.0.0",
"@salesforce/ts-types": "^1.0.0",
"@types/jsforce": "1.9.2",
"bunyan-sfdx-no-dtrace": "1.8.2",
"debug": "^3.1.0",
"jsen": "0.6.6",
"jsforce": "1.8.5",
"jsonwebtoken": "8.5.0",
"mkdirp": "0.5.1",
"sfdx-faye": "^1.0.9"
},
"devDependencies": {
"@salesforce/dev-scripts": "0.3.14",
"@types/debug": "0.0.30",
"@types/jsen": "0.0.19",
"@types/jsonwebtoken": "8.3.2",
"@types/mkdirp": "0.5.2",
"@types/shelljs": "0.7.8",
"commitizen": "^3.0.5",
"husky": "^1",
"semantic-release": "^15.10.5",
"shelljs": "0.8.1"
},
"types": "lib/exported.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/forcedotcom/sfdx-core.git"
},
"publishConfig": {
"access": "public"
}
}