-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "sfdx-migration-automatic",
"version": "4.2.1",
"author": "Shinichi Tomita <[email protected]>",
"bugs": "https://github.com/stomita/sfdx-migration-automatic/issues",
"dependencies": {
"@oclif/command": "^1.5.0",
"@oclif/config": "^1.15.1",
"@oclif/errors": "^1.2.2",
"@salesforce/command": "^3.0.0",
"@salesforce/core": "^2.4.0",
"fs-extra": "^9.0.0",
"jsforce": "^1.10.1",
"salesforce-migration-app-pack": "^1.2.1",
"salesforce-migration-automatic": "^3.1.3",
"tslib": "^1.11.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^3.0.0",
"@oclif/test": "^1.2.5",
"@salesforce/dev-config": "^1.5.0",
"@salesforce/ts-sinon": "^1.2.3",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.3",
"@types/jsforce": "^1.9.34",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"globby": "^11.0.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^2.1.2",
"sinon": "^9.0.2",
"ts-node": "^8.9.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/stomita/sfdx-migration-automatic",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "stomita/sfdx-migration-automatic",
"scripts": {
"lint": "eslint src test --ext ts",
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"posttest": "npm run lint",
"prepare": "rm -rf lib && tsc -b && oclif-dev manifest && npm shrinkwrap",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
}
}