-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
{
"name": "rsxjs",
"version": "1.0.0",
"description": "Resilience Extensions for JS.",
"main": "dist/index.js",
"scripts": {
"test": "jest --runInBand --forceExit --detectOpenHandles",
"build": "tsc --emitDeclarationOnly --outDir dist && esbuild src/index.ts --bundle --external:uuid --external:check-types --external:debug --external:ioredis --outfile=dist/index.js --platform=node",
"lint": "prettier --check './src/**'",
"format": "prettier --write './src/**'",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karimsa/rsxjs.git"
},
"keywords": [
"resilience",
"patterns",
"data",
"structures",
"extensions",
"chaos"
],
"author": "Karim Alibhai",
"license": "MIT",
"bugs": {
"url": "https://github.com/karimsa/rsxjs/issues"
},
"homepage": "https://github.com/karimsa/rsxjs#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@types/check-types": "^7.3.2",
"@types/debug": "4.1.6",
"@types/ioredis": "^4.26.5",
"@types/node": "^16.0.1",
"@types/uuid": "^8.3.1",
"babel-jest": "^27.0.6",
"bluebird": "^3.7.2",
"esbuild": "^0.12.15",
"jest": "^27.0.6",
"lolex": "^5.1.2",
"prettier": "^2.3.2",
"sinon": "^11.1.1",
"typescript": "^4.3.5"
},
"optionalDependencies": {
"ioredis": "^4.27.6"
},
"dependencies": {
"check-types": "^11.1.2",
"debug": "^4.3.2",
"uuid": "^8.3.2"
}
}