-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.52 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
{
"name": "adonisjs-sse",
"version": "0.1.2",
"description": "An addon/plugin package to provide server-sent events functionality for AdonisJS 4.0+",
"main": "index.js",
"files": [
"src",
"config",
"providers",
"instruction.js",
"instructions.md",
"index.js"
],
"directories": {
"test": "test"
},
"scripts": {
"lint": "standard --fix",
"pretest": "npm run lint",
"test": "nyc node japaFile.js",
"test:win": "node ./node_modules/japa-cli/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"server-sent-events",
"event-streaming",
"eventsource",
"adonisjs"
],
"author": "StitchNG <stitchnig@gmail.com> (https://twitter.com/stitchappn)",
"license": "MIT",
"nyc": {
"exclude": [
"test"
]
},
"standard": {
"globals": [
"use",
"test"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"server-events-nodejs": "^0.2.1",
"uuid": "^3.3.0"
},
"devDependencies": {
"japa": "^2.0.5",
"japa-cli": "^1.0.1",
"nyc": "^13.0.1",
"semver": "^5.5.0",
"debug": "^3.1.2",
"coveralls": "^3.0.2",
"standard": "^12.0.1",
"@adonisjs/ace": "^5.0.2",
"@adonisjs/sink": "^1.0.6",
"@adonisjs/fold": "^4.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/stitchng/adonis-sse.git"
},
"bugs": {
"url": "https://github.com/stitchng/adonis-sse/issues"
},
"homepage": "https://github.com/stitchng/adonis-sse"
}