-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "sfdc-eventmonitoring",
"version": "0.1.13",
"description": "Command line tools surrounding event monitoring",
"main": "eventmonitoring.js",
"bin": {
"eventmonitoring": "eventmonitoring.js"
},
"scripts": {
"coverage": "./node_modules/.bin/jest --coverage --coverageReporters=text-lcov | ./node_modules/.bin/coveralls",
"lint-eslint": "./node_modules/.bin/eslint eventmonitoring.js src/* tests/*",
"lint-md": "./node_modules/.bin/remark --no-stdout -f *.md examples/**/*.md",
"lint": "npm run lint-eslint && npm run lint-md",
"test": "./node_modules/.bin/jest"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
[
"remark-lint-final-newline",
false
]
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"eventmonitoring.js"
],
"testURL": "http://localhost/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcon/sfdc-eventMonitoring.git"
},
"keywords": [
"salesforce",
"event",
"monitoring"
],
"author": "Patrick Connelly",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pcon/sfdc-eventMonitoring/issues"
},
"homepage": "https://github.com/pcon/sfdc-eventMonitoring#readme",
"dependencies": {
"bunyan": "^1.8.12",
"chalk": "^2.4.1",
"csv-writer": "^1.2.0",
"csvtojson": "^2.0.4",
"ini": "^1.3.5",
"jsforce": "^1.9.0",
"jsonfile": "^4.0.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"numeral": "^2.0.6",
"pretty-bytes": "^5.1.0",
"pretty-ms": "^3.2.0",
"q": "^1.5.1",
"table": "^4.0.3",
"yargs": "^11.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.0.1",
"jest": "^23.4.2",
"pretend-platform": "^2.0.0",
"remark": "^9.0.0",
"remark-cli": "^5.0.0",
"remark-lint": "^6.0.2",
"remark-preset-lint-recommended": "^3.0.2"
}
}