-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
105 lines (105 loc) · 3.45 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
{
"name": "sfdx-flowdoc-plugin",
"description": "A Salesforce CLI plugin that generates design document from Lightning Flow metadata.",
"version": "0.5.1",
"author": "Shun Kosaka",
"bugs": "https://github.com/shunkosa/sfdx-flowdoc-plugin/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^2",
"@salesforce/core": "^2",
"docx": "^5.0.2",
"fs-extra": "^9.0.0",
"i18n": "^0.8.6",
"path": "^0.12.7",
"pdfmake": "^0.1.65",
"tslib": "^1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@salesforce/dev-config": "1.4.1",
"@types/jest": "^24.0.11",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.3.1",
"rimraf": "^3.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^8",
"typescript": "^3.8.3",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/shunkosa/sfdx-flowdoc-plugin",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"flowdoc": {
"description": "commands to handle flow metadata"
},
"flowdoc:pdf": {
"description": "command to generate pdf document"
},
"flowdoc:docx": {
"description": "command to generate docx document"
},
"flowdoc:json": {
"description": "commands to generate/display json file"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "shunkosa/sfdx-flowdoc-plugin",
"scripts": {
"build": "rimraf lib && tsc -b && cp -r src/assets lib/assets && cp src/style/style.json lib/style/style.json && cp -r src/config/locale lib/config/locale && cp src/lib/actionLayout.json lib/lib/actionLayout.json",
"clean": "rimraf oclif.manifest.json",
"prepare": "npm run build && oclif-dev manifest",
"postpublish": "npm run clean; git push; git push --tags",
"test": "jest --coverage",
"validate": "eslint src/**/*.ts",
"version": "oclif-dev readme && git add README.md",
"prettier": "prettier --write \"**/*.{ts,js,json,md,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{ts,js,json,md,yaml,yml}\"",
"prettier:debug": "prettier --debug-check \"**/*.{ts,js,json,md,yaml,yml}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write",
"git add"
]
}
}