-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "@jpwilliams/distributed-promise",
"version": "0.2.4",
"description": "Distribute a promise across multiple processes connected via Redis.",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"clean": "rm -rf lib",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"build:watch": "onchange 'src/**/*' -- npm run build",
"build:docs": "typedoc",
"build:docs:watch": "onchange 'src/**/*' -- npm run build:docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpwilliams/distributed-promise.git"
},
"keywords": [
"distributed",
"promise",
"shared",
"redis",
"cache",
"memo"
],
"author": "Jack Williams <@jpwilliams>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpwilliams/distributed-promise/issues"
},
"homepage": "https://github.com/jpwilliams/distributed-promise#readme",
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "14.14.33",
"@types/redis": "2.8.28",
"@types/sigmund": "1.0.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint": "6.8.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.2.1",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"jest": "26.6.3",
"onchange": "7.1.0",
"redis": "3.0.2",
"ts-jest": "25.5.1",
"ts-node": "9.1.1",
"typedoc": "0.20.30",
"typescript": "3.9.9"
},
"dependencies": {
"callsites": "^3.1.0",
"sigmund": "^1.0.1",
"ulid": "^2.3.0"
}
}