forked from forcedotcom/salesforcedx-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 3.75 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "salesforcedx-templates",
"description": "Salesforce CLI scaffolding commands for different types of Force.com metadata",
"version": "49.0.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/salesforcedx-templates/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^2.2.0",
"@salesforce/core": "^2.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mkdirp": "^0.5.1",
"tslib": "^1",
"yeoman-environment": "2.4.0",
"yeoman-generator": "4.0.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-command-snapshot": "^1.0.0",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@salesforce/dev-config": "1.4.1",
"@salesforce/plugin-command-reference": "^1.0.7",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"@types/yeoman-assert": "^3.1.1",
"@types/yeoman-generator": "^3.1.3",
"chai": "^4",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"globby": "^8",
"mocha": "^5",
"nyc": "15.0.1",
"prettier": "1.16.4",
"pretty-quick": "^1.11.1",
"shx": "0.2.2",
"sinon": "^7.3.1",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"engines": {
"node": ">=10.15.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/forcedotcom/salesforcedx-templates",
"keywords": [
"force",
"salesforce",
"sfdx",
"salesforcedx",
"sfdx-plugin"
],
"license": "BSD-3-Clause",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-command-snapshot",
"@salesforce/plugin-command-reference"
],
"topics": {
"force": {
"external": true,
"subtopics": {
"apex": {
"external": true
},
"analytics": {
"description": "work with analytics assets",
"longDescription": "Work with analytics assets.",
"subtopics": {
"template": {
"description": "work with analytics templates",
"longDescription": "Work with analytics templates."
}
}
},
"lightning": {
"external": true
},
"project": {
"external": true,
"subtopics": {}
},
"visualforce": {
"external": true,
"subtopics": {}
}
}
}
}
},
"repository": "forcedotcom/salesforcedx-templates",
"scripts": {
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
"compile": "tsc -b",
"build": "yarn run clean:lib && yarn build:templates && yarn compile",
"build:templates": "node scripts/build-templates",
"lint": "tslint --project . --config tslint.json --format stylish",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn run build && oclif-dev manifest",
"reformat": "prettier --config .prettierrc --write './*.{js,json,md}' './**/*.{ts,json,md}'",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint && yarn test:deprecation-policy && yarn test:command-reference",
"version": "oclif-dev readme && git add README.md",
"test:deprecation-policy": "./bin/run snapshot:compare",
"test:command-reference": "./bin/run commandreference:generate -p salesforcedx-templates --erroronwarnings"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}