-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 855 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
{
"name": "redis-messaging-manager-examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"redis-messaging-manager": "^1.5.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/express": "^4.11.1",
"@types/ioredis": "^3.2.7",
"@types/mocha": "2.2.41",
"@types/node": "7.0.22",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "3.4.2",
"supertest": "3.0.0",
"typescript": "^2.7.1",
"typescript-eslint-parser": "3.0.0"
}
}