-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.39 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
89
{
"name": "cog-pardot",
"version": "0.5.0",
"description": "Pardot Cog for use with Crank",
"license": "MIT",
"cog": {
"name": "stackmoxie/pardot",
"label": "Pardot",
"homepage": "https://github.com/run-crank/cog-pardot",
"authHelpUrl": "https://github.com/run-crank/cog-pardot#authentication"
},
"scripts": {
"build-docker": "docker build -t stackmoxie/pardot:$npm_package_version -t stackmoxie/pardot:latest .",
"build-proto": "scripts/build-proto.sh",
"build-ts": "tsc",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "check-engine package.json && ts-node src/core/grpc-server.ts",
"test": "nyc mocha -r ts-node/register test/*.ts test/**/*.ts test/**/**/*.ts",
"version": "crank cog:readme stackmoxie/pardot && git add README.md"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/**/*.ts",
"**/*.js",
"src/core/grpc-server.ts"
],
"reporter": [
"html",
"text"
],
"all": true
},
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/google-protobuf": "^3.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"chai": "^4.2.0",
"check-engine": "^1.10.1",
"grpc-tools": "^1.7.3",
"grpc_tools_node_protoc_ts": "^2.5.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"sinon-chai": "^3.3.0",
"ts-sinon": "^1.0.17",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.1"
},
"dependencies": {
"@run-crank/utilities": "^0.5.2",
"@types/retry": "^0.12.0",
"ajv": "^6.12.6",
"async": "^2.6.4",
"axios": "^0.21.1",
"decode-uri-component": "^0.2.2",
"flat": "^5.0.2",
"glob-parent": "^5.1.2",
"google-protobuf": "^3.8.0",
"grpc": "^1.24.11",
"handlebars": "^4.7.7",
"highlight.js": "^9.18.5",
"hosted-git-info": "^2.8.9",
"ini": "^1.3.8",
"jsforce": "^1.10.1",
"lew-pardot": "https://codeload.github.com/iamEAP/lew-pardot/tar.gz/240769ed",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"minimatch": "^3.1.2",
"minimist": "^1.2.7",
"moment": "^2.29.4",
"path-parse": "^1.0.7",
"pathval": "^1.1.1",
"qs": "^6.5.3",
"redis": "^3.1.2",
"retry": "^0.12.0",
"set-getter": "^0.1.1",
"striptags": "^3.2.0",
"ts-node": "^8.3.0",
"y18n": "^3.2.2"
}
}