-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "mocksse",
"version": "1.0.4",
"description": "Allows testing of EventSource / Server Sent Events",
"main": "src/mocksse.js",
"scripts": {
"lint": "eslint .",
"deps": "npm-check",
"update:deps": "npm-check -u",
"test": "lab --assert @hapi/code --coverage",
"test:debug": "node --inspect-brk ./node_modules/.bin/lab --assert @hapi/code --timeout 0",
"pretest": "npm run lint",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binarymist/mocksse.git"
},
"keywords": [
"Server Sent Events",
"SSE",
"mock",
"mocking",
"test",
"testing",
"EventSource"
],
"author": {
"name": "BinaryMist",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"@hapi/code": "^8.0.7",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"@hapi/lab": "^24.6.0",
"npm-check": "^5.9.2",
"husky": "^7.0.4"
},
"license": "MIT",
"bugs": "https://github.com/binarymist/mocksse/issues",
"files": [
"src"
]
}