UNPKG

3.84 kBJSONView Raw
1{
2 "name": "salesforcedx-templates",
3 "description": "Salesforce CLI scaffolding commands for different types of Force.com metadata",
4 "version": "48.27.0",
5 "author": "Salesforce",
6 "bugs": "https://github.com/forcedotcom/salesforcedx-templates/issues",
7 "dependencies": {
8 "@oclif/command": "^1",
9 "@oclif/config": "^1",
10 "@oclif/errors": "^1",
11 "@salesforce/command": "^2.2.0",
12 "@salesforce/core": "^2.3.0",
13 "husky": "^4.2.5",
14 "lint-staged": "^10.2.2",
15 "mkdirp": "^0.5.1",
16 "tslib": "^1",
17 "yeoman-environment": "2.4.0",
18 "yeoman-generator": "4.0.1"
19 },
20 "devDependencies": {
21 "@oclif/dev-cli": "^1",
22 "@oclif/plugin-command-snapshot": "^1.0.0",
23 "@oclif/plugin-help": "^2",
24 "@oclif/test": "^1",
25 "@salesforce/dev-config": "1.4.1",
26 "@salesforce/plugin-command-reference": "^1.0.7",
27 "@types/chai": "^4",
28 "@types/mocha": "^5",
29 "@types/node": "^10",
30 "@types/yeoman-assert": "^3.1.1",
31 "@types/yeoman-generator": "^3.1.3",
32 "chai": "^4",
33 "eslint": "6.6.0",
34 "eslint-config-prettier": "6.5.0",
35 "globby": "^8",
36 "mocha": "^5",
37 "nyc": "15.0.1",
38 "prettier": "1.16.4",
39 "pretty-quick": "^1.11.1",
40 "shx": "0.2.2",
41 "sinon": "^7.3.1",
42 "ts-node": "^8.6.2",
43 "tslint": "^6.1.0",
44 "typescript": "^3.8.3",
45 "yeoman-assert": "^3.1.1",
46 "yeoman-test": "^2.0.0"
47 },
48 "engines": {
49 "node": ">=10.15.0"
50 },
51 "files": [
52 "/lib",
53 "/messages",
54 "/npm-shrinkwrap.json",
55 "/oclif.manifest.json"
56 ],
57 "homepage": "https://github.com/forcedotcom/salesforcedx-templates",
58 "keywords": [
59 "force",
60 "salesforce",
61 "sfdx",
62 "salesforcedx",
63 "sfdx-plugin"
64 ],
65 "license": "BSD-3-Clause",
66 "oclif": {
67 "commands": "./lib/commands",
68 "bin": "sfdx",
69 "devPlugins": [
70 "@oclif/plugin-help",
71 "@oclif/plugin-command-snapshot",
72 "@salesforce/plugin-command-reference"
73 ],
74 "topics": {
75 "force": {
76 "external": true,
77 "subtopics": {
78 "apex": {
79 "external": true
80 },
81 "analytics": {
82 "description": "work with analytics assets",
83 "longDescription": "Work with analytics assets.",
84 "subtopics": {
85 "template": {
86 "description": "work with analytics templates",
87 "longDescription": "Work with analytics templates."
88 }
89 }
90 },
91 "lightning": {
92 "external": true
93 },
94 "project": {
95 "external": true,
96 "subtopics": {}
97 },
98 "visualforce": {
99 "external": true,
100 "subtopics": {}
101 }
102 }
103 }
104 }
105 },
106 "repository": "forcedotcom/salesforcedx-templates",
107 "scripts": {
108 "clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
109 "compile": "tsc -b",
110 "build": "yarn run clean:lib && yarn build:templates && yarn compile",
111 "build:templates": "node scripts/build-templates",
112 "lint": "tslint --project . --config tslint.json --format stylish",
113 "postpack": "shx rm -f oclif.manifest.json",
114 "prepack": "yarn run build && oclif-dev manifest",
115 "reformat": "prettier --config .prettierrc --write './*.{js,json,md}' './**/*.{ts,json,md}'",
116 "test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
117 "posttest": "yarn lint && yarn test:deprecation-policy && yarn test:command-reference",
118 "version": "oclif-dev readme && git add README.md",
119 "test:deprecation-policy": "./bin/run snapshot:compare",
120 "test:command-reference": "./bin/run commandreference:generate -p salesforcedx-templates --erroronwarnings"
121 },
122 "husky": {
123 "hooks": {
124 "pre-commit": "lint-staged"
125 }
126 }
127}