forked from amtrack/force-dev-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.68 KB
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
{
"name": "force-dev-tool",
"description": "Command line tool supporting the Force.com development lifecycle",
"version": "0.11.0",
"author": "Matthias Rolke <mr.amtrack@gmail.com>",
"bin": {
"force-dev-tool": "bin/cli"
},
"dependencies": {
"async": "^2.0.0",
"chalk": "^1.1.3",
"docopt": "^0.6.2",
"find-up": "^1.1.2",
"fs-extra": "^0.30.0",
"glob": "^7.0.6",
"jsforce": "^1.7.0",
"mkdirp": "^0.5.1",
"multimatch": "^2.1.0",
"parse-diff": "^0.3.2",
"tabtab": "0.0.4",
"tmp": "0.0.28",
"underscore": "^1.8.3",
"vinyl": "^1.2.0",
"vinyl-fs": "^2.4.3",
"xmldoc": "github:nyurik/xmldoc#3107ca5fe10227539299fb1bb82992d5b824bc37",
"yauzl": "^2.3.1",
"yazl": "^2.4.1"
},
"devDependencies": {
"eslint": "^2.13.1",
"glob-all": "^3.1.0",
"istanbul": "^0.4.4",
"js-beautify": "^1.6.2",
"jsdoc": "^3.3.2",
"mocha": "^2.3.2",
"sinon": "^1.17.4"
},
"engines": {
"node": ">= 0.12.0"
},
"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": {
"doc": "jsdoc lib -r -R README.md -d doc",
"istanbul": "istanbul test ./node_modules/.bin/_mocha -- test/ --recursive",
"lint": "eslint --ignore-path .gitignore .",
"mocha": "mocha test/ --recursive",
"test": "npm run lint && npm run istanbul",
"fmt": "glob-all 'lib/**/*.{js,json}' 'test/**/*.{js,json}' 'bin/cli' | xargs js-beautify -r"
}
}