-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "@gonimbly/nimblyci",
"version": "0.1.1",
"description": "Helper library for CI on Salesforce",
"main": "dist/nimblyci.js",
"repository": {
"url": "https://nimblyci@bitbucket.org/nimblyci/nimblyci.git",
"type": "git"
},
"author": "Jon Crenshaw <jdcrensh@gmail.com>",
"license": "MIT",
"bin": {
"nimblyci": "./bin/cli.js"
},
"scripts": {
"build": "rollup -c",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@gonimbly/eslint-config-base-babel": "^2.3.1",
"babel-core": "^6.18.2",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.5",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"archiver": "^1.2.0",
"chalk": "^2.3.0",
"delay": "^2.0.0",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"jsforce": "^1.7.1",
"lodash": "^4.17.2",
"node-status": "^1.0.0",
"pretty-data": "^0.40.0",
"promisify-node": "^0.4.0",
"stream-buffers": "^3.0.1",
"wicked-good-xpath": "^1.3.0",
"winston": "^2.3.0",
"xmldom": "^0.1.27",
"xmlpoke": "^0.1.12"
}
}