This repository has been archived by the owner on Oct 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.53 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
{
"name": "@openfn/language-salesforce",
"version": "2.10.0",
"description": "Salesforce Language Pack for OpenFn",
"homepage": "https://docs.openfn.org",
"main": "lib/index.js",
"scripts": {
"build": "node_modules/.bin/babel src -d lib && npm run ast",
"test": "mocha --require @babel/register",
"test:watch": "mocha -w --require @babel/register",
"ast": "simple-ast --adaptor ./src/Adaptor.js --output ast.json",
"postversion": "git push && git push --tags",
"version": "npm run build && git add -A lib ast.json"
},
"author": "Open Function Group",
"license": "LGPLv3",
"repository": {
"type": "git",
"url": "git://github.com/OpenFn/language-salesforce.git"
},
"files": [
"lib/",
"ast.json"
],
"dependencies": {
"@openfn/language-common": "1.7.3",
"axios": "^0.21.1",
"jsforce": "^1.11.0",
"JSONPath": "^0.10.0",
"lodash-fp": "^0.10.2",
"mustache": "^2.2.0",
"yargs": "^3.30.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"@openfn/simple-ast": "^0.4.1",
"assertion-error": "^1.0.1",
"chai": "^4.2.0",
"deep-eql": "^4.0.0",
"jsdoc": "^3.6.10",
"mocha": "^7.1.1",
"nock": "^13.0.5",
"sinon": "^9.2.3",
"type-detect": "^1.0.0"
},
"directories": {
"lib": "./lib"
},
"bundledDependencies": [
"@openfn/language-common",
"axios",
"jsforce",
"JSONPath",
"lodash-fp",
"mustache",
"yargs"
]
}