-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "@toverux/expresse",
"version": "0.0.0-semantic-released",
"description": "ExpreSSE: A better module for working with Server-Sent Events in Express",
"author": "Morgan Touverey Quilling <mtouverey@methodinthemadness.eu>",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "yarn lint && tsc",
"watch": "tsc -w",
"test": "mocha dist/test/**/*.js",
"lint": "tslint -t verbose \"src/**/*.ts\" \"test/**/*.ts\"",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/toverux/expresse.git"
},
"bugs": {
"url": "https://github.com/toverux/expresse/issues"
},
"homepage": "https://github.com/toverux/expresse#readme",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.41",
"@types/node": "^9.4.4",
"chai": "^4.0.0",
"cors": "^2.8.4",
"express": "^4.15.4",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"semantic-release": "^12.4.1",
"travis-deploy-once": "^4.3.4",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
},
"peerDependencies": {
"express": ">=4.0.0"
},
"dependencies": {
"@types/ioredis": "^3.2.5",
"compose-middleware": "^4.0.0",
"ioredis": "^3.1.1"
}
}