forked from aaronhuggins/sf-composite-call
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
{
"name": "sf-composite-call",
"version": "0.4.0",
"description": "Support for making Salesforce composite call requests with integration for JSforce.",
"scripts": {
"test": "gulp test",
"test:local": "gulp test:local",
"tsc": "tsc",
"prepack": "gulp compile",
"postpack": "gulp clean"
},
"keywords": [
"jsforce",
"salesforce",
"composite",
"api"
],
"author": "Aaron Huggins",
"repository": {
"type": "git",
"url": "https://github.com/ahuggins-nhs/sf-composite-call"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"eslintIgnore": [
"index.d.ts",
"typings/*",
"dist/*",
"*.js"
],
"dependencies": {
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jsforce": "^1.9.18",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.9",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"codecov": "^3.7.0",
"del-cli": "^3.0.1",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^7.1.0",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^27.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gulp": "^4.0.2",
"gulp-mocha": "^7.0.2",
"gulp-shell": "^0.8.0",
"gulp-zip": "^5.0.1",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^6.0.1",
"minimist": "^1.2.5",
"mocha": "^7.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}