-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
66
67
68
69
70
71
72
73
{
"name": "@cisl/io",
"version": "1.3.0",
"description": "A framework for building distributed applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"docs": "typedoc src && cp -R img docs",
"test": "jest",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts test/**/*.ts",
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "echo \"Do not run publish directly, run tsc-publish\" && exit 1",
"tsc-publish": "tsc-publish"
},
"engines": {
"node": ">=8.0.0"
},
"contributors": [
{
"name": "Yedendra Shrinivasan",
"email": "[email protected]"
},
{
"name": "Yunfeng Zhang",
"email": "[email protected]"
},
{
"name": "Matthew Peveler",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/cislrpi/io"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cislrpi/io/issues"
},
"homepage": "https://github.com/cislrpi/io#readme",
"dependencies": {
"@cisl/cog-loader": "^1.0.0-dev.4",
"@types/amqplib": "^0.5.12",
"@types/ioredis": "^4.0.18",
"@types/node": "^12.0.3",
"@types/request": "^2.48.1",
"@types/uuid": "^3.4.4",
"amqplib": "^0.8.0",
"ioredis": "^4.14.1",
"mongoose": "^5.11.0",
"node-fetch": "^2.6.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@masterodin/eslint-config-typescript": "^1.0.0",
"@types/jest": "^26.0.4",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"bluebird": "^3.7.2",
"eslint": "^7.1.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.3",
"tsc-publish": "^0.5.0",
"typedoc": "^0.21.4",
"typescript": "^4.3.5"
}
}