forked from jeffdonthemic/node-red-contrib-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
88 lines (88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "node-red-contrib-salesforce",
"version": "0.8.1",
"description": "A set of Node-RED nodes to interact with Salesforce and Force.com.",
"author": {
"name": "Jeff Douglas",
"url": "http://blog.jeffdouglas.com"
},
"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]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Stwissel/node-red-contrib-salesforce"
},
"keywords": [
"node-red",
"salesforce",
"forcedotcom",
"Heroku"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"soql": "soql.js",
"sosl": "sosl.js",
"dml": "dml.js",
"chatter": "chatter.js",
"streaming": "streaming.js",
"obm": "obm.js",
"connection-config": "connection-config.js"
}
},
"engines": {
"node": ">18.0"
},
"license": "MIT",
"dependencies": {
"faye": "^1.4.0",
"nforce8": "2.1.1",
"xml2js": "^0.4.23"
},
"scripts": {
"oldtest": "mocha \"test/**/*_spec.js\"",
"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"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@snyk/protect": "^1.1087.0",
"eslint": "^8.31.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^15.0.1",
"snyk": "^1.1087.0",
"supertest": "^6.3.3"
},
"nyc": {
"exclude": [
"examples",
"docs"
]
},
"snyk": true
}