-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 1.88 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
76
77
78
79
{
"name": "nforce8",
"description": "Forked from nforce by Kevin O'Hara <[email protected]> (http://kevinmohara.com) for use in NodeRED",
"version": "2.1.1",
"author": "Stephan H. Wissel <[email protected]> (https://wissel.net)",
"contributors": [
{
"name": "Stephan H. Wissel",
"url": "https://wissel.net",
"email": "[email protected]"
},
{
"name": "Srikanth Ramakrishnan",
"email": "[email protected]"
},
{
"name": "Todd Hiles",
"url": "https://github.com/moonrockfamily/nforce8",
"email": "[email protected]"
}
],
"keywords": [
"salesforce",
"salesforce.com",
"force.com",
"database.com",
"sfdc",
"forcedotcom",
"rest",
"api"
],
"sfdx": {
"api": "v45.0"
},
"repository": {
"type": "git",
"url": "git://github.com/stwissel/nforce8.git"
},
"main": "index.js",
"dependencies": {
"faye": "^1.4.0",
"lodash": "^4.17.21",
"mime": "^3.0.0",
"node-fetch": "^2.6.8"
},
"devDependencies": {
"@snyk/protect": "^1.1087.0",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pug": "^3.0.2",
"run-sequence": "^2.2.1",
"should": "^13.2.3"
},
"engines": {
"node": ">18.0"
},
"bugs": {
"url": "http://github.com/stwissel/nforce8/issues"
},
"scripts": {
"preversion": "npm test",
"test": "nyc --reporter=text --reporter=html --reporter=text-lcov --reporter=lcovonly ./node_modules/.bin/mocha ./test --reporter spec",
"postversion": "git push && git push --tags",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"snyk-protect": "node_modules/.bin/snyk-protect",
"prepare": "npm run snyk-protect"
},
"nyc": {
"exclude": [
"examples",
"docs"
]
},
"license": "MIT",
"snyk": true
}