-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "event-driven-functions",
"version": "1.0.0",
"description": "Invoke javascript functions in a Heroku app via Salesforce Platform Events",
"main": "index.js",
"engines": {
"node": "8.11.x"
},
"scripts": {
"test": "`npm bin`/ava **/*-test.js",
"test:unit": "`npm bin`/ava lib/**/*-test.js",
"test:integration": "`npm bin`/ava --timeout=30s test/**/*-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heroku/event-driven-functions.git"
},
"author": "[email protected]",
"bugs": {
"url": "https://github.com/heroku/event-driven-functions/issues"
},
"homepage": "https://github.com/heroku/event-driven-functions#readme",
"dependencies": {
"dotenv": "^4.0.0",
"episode-7": "^1.1.1",
"jsforce": "^1.9.0",
"jsforce-connection": "^2.1.0",
"knox": "git+https://github.com/mars/knox.git#upgrade-mime",
"node-rdkafka": "~2.2.3",
"redis": "^2.8.0",
"rxjs": "^5.5.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"ava": "^0.25.0",
"glob": "^7.1.2",
"mkdirp": "^0.5.1"
}
}