This repository has been archived by the owner on May 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "parse-salesforce-object",
"version": "0.1.1",
"description": "Parse Salesforce Custom Object's metadata and convert to Markdown/CSV/SOQL format",
"keywords": [
"salesforce",
"oclif"
],
"homepage": "https://github.com/zaki-yama/parse-salesforce-object",
"bugs": "https://github.com/zaki-yama/parse-salesforce-object/issues",
"repository": "zaki-yama/parse-salesforce-object",
"license": "MIT",
"author": "Shingo Yamazaki",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"parse-salesforce-object": "./bin/run"
},
"files": [
"/bin",
"/lib"
],
"scripts": {
"lint": "run-p -l lint:*",
"lint:eslint": "eslint . --ext .ts,.js",
"lint:ts": "tsc --noEmit",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"prerelease": "run-p lint test",
"release": "standard-version",
"release:dry-run": "standard-version --dry-run",
"test": "jest",
"version": "oclif-dev readme && git add README.md"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"glob": "^7.1.6",
"json2csv": "^5.0.5",
"markdown-table": "^2.0.0",
"string-width": "^4.2.0",
"tslib": "^2.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@cybozu/eslint-config": "14.0.3",
"@oclif/dev-cli": "1.26.8",
"@oclif/test": "1.2.8",
"@types/chai": "4.2.22",
"@types/jest": "26.0.24",
"@types/json2csv": "5.0.3",
"@types/markdown-table": "2.0.0",
"@types/node": "14.17.34",
"@types/string-width": "4.0.1",
"@types/xml2js": "0.4.9",
"chai": "4.3.4",
"eslint": "7.30.0",
"eslint-config-oclif": "3.1.0",
"eslint-config-oclif-typescript": "0.2.0",
"eslint-plugin-jest": "24.3.7",
"jest": "27.0.6",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"prettier": "2.3.2",
"standard-version": "9.3.2",
"ts-jest": "27.0.7",
"ts-node": "10.1.0",
"typescript": "4.3.5"
},
"engines": {
"node": ">=10.1.0"
},
"oclif": {
"bin": "parse-salesforce-object"
}
}