-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 KB
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
{
"name": "retro-lambda",
"version": "1.0.1",
"description": "NodeJS-based prototype of an event-sourced computing platform with retroactive capabilities.",
"keywords": [
"event sourcing",
"serverless",
"retroaction"
],
"homepage": "https://github.com/vs-uulm/retro-lambda",
"bugs": {
"url": "https://github.com/vs-uulm/retro-lambda/issues"
},
"repository": "github:vs-uulm/retro-lambda.git",
"author": "Dominik Meißner <dominik.meissner@uni-ulm.de> (https://uni-ulm.de/in/vs/meissner)",
"contributors": [
"Dominik Meißner <dominik.meissner@uni-ulm.de> (https://uni-ulm.de/in/vs/meissner)",
"Benjamin Erb <benjamin.erb@uni-ulm.de> (https://uni-ulm.de/in/vs/erb)"
],
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "eslint ."
},
"engines": {
"node": "9.5.0"
},
"dependencies": {
"debug": "3.1.0",
"fast-json-patch": "2.0.6",
"level-packager": "2.1.1",
"rocksdb": "4.1.0",
"uuid": "3.2.1",
"uuid-parse": "1.0.0"
},
"devDependencies": {
"eslint": "4.18.2",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0"
}
}