-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "socket.io-mock",
"version": "1.3.1",
"description": "a mocked version of a socket.io socket for testing",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"lint": "standard",
"test": "./scripts/test.sh",
"build": "./scripts/build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supremetechnopriest/socket.io-mock.git"
},
"keywords": [
"socket.io",
"test",
"mock",
"socket",
"mocha",
"chai",
"karma"
],
"author": "Randy Lebeau",
"license": "MIT",
"bugs": {
"url": "https://github.com/supremetechnopriest/socket.io-mock/issues"
},
"homepage": "https://github.com/supremetechnopriest/socket.io-mock#readme",
"dependencies": {
"component-emitter": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^8.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^6.1.0",
"standard": "^14.3.4",
"uglify-js": "^3.10.0"
},
"standard": {
"ignore": [
"dist"
]
},
"mocha": {
"require": "esm",
"timeout": 5000,
"reporter": "spec",
"bail": true,
"checkLeaks": true
}
}