This repository has been archived by the owner on Oct 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
71 lines (71 loc) · 2.11 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
{
"name": "force-dev-tool",
"description": "Command line tool supporting the Force.com development lifecycle",
"version": "0.0.0-development",
"author": "Matthias Rolke <[email protected]>",
"bin": {
"force-dev-tool": "bin/cli"
},
"dependencies": {
"async": "^3.0.0",
"chalk": "^4.0.0",
"docopt": "^0.6.2",
"find-up": "^4.0.0",
"fs-extra": "^9.0.0",
"glob": "^7.0.6",
"jsforce": "^1.7.0",
"merge-stream": "^2.0.0",
"mississippi": "^4.0.0",
"multimatch": "^4.0.0",
"parse-diff": "^0.7.0",
"underscore": "^1.8.3",
"vinyl": "^2.0.0",
"vinyl-fs": "^3.0.0",
"xml2js": "^0.4.19",
"xmldoc": "^1.1.0",
"yauzl": "^2.9.1",
"yazl": "^2.4.3"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"cucumber": "^6.0.5",
"cucumber-pretty": "^6.0.0",
"eslint": "^7.0.0",
"glob-all": "^3.1.0",
"istanbul": "^0.4.4",
"js-beautify": "^1.7.5",
"mocha": "^8.0.0",
"sinon": "^9.0.0",
"tmp": "^0.2.1"
},
"keywords": [
"cli",
"deployment",
"diff",
"force.com",
"forcedotcom",
"metadata",
"salesforce",
"sfdc",
"lifecycle"
],
"license": "MIT",
"main": "lib/index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/amtrack/force-dev-tool.git"
},
"scripts": {
"istanbul": "istanbul test mocha -- test/ --recursive",
"lint": "eslint --ignore-path .gitignore .",
"mocha": "mocha test/ --recursive",
"test": "npm run lint && npm run mocha && npm run test:functional",
"test:integration": "mocha test-integration --recursive",
"test:functional": "cucumber-js test-functional/feature --tags \"not @skipped\" --require test-functional/step-definitions/changeSet.js --format ./node_modules/cucumber-pretty",
"test:functional:doing": "npm run test:functional -- --tags \"@doing\"",
"test:functional:debug": "NODE_OPTIONS=--inspect-brk npm run test:functional -- --tags \"@doing\"",
"fmt": "glob-all 'lib/**/*.{js,json}' 'test/**/*.{js,json}' 'test-integration/**/*.{js,json}' 'bin/cli' | xargs js-beautify -r"
}
}