-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 997 Bytes
/
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
{
"name": "unicorn-adapter",
"version": "1.1.1",
"description": "Easily connect to Unicorn, the event processing engine",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlichtblau/unicorn-adapter.git"
},
"keywords": [
"unicorn",
"event",
"processing",
"adapter",
"node",
"javascript"
],
"author": "Marius Lichtblau",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlichtblau/unicorn-adapter/issues"
},
"homepage": "https://github.com/mlichtblau/unicorn-adapter#readme",
"dependencies": {
"esper-language": "0.0.1",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"xml": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"sinon": "^7.3.1"
}
}