forked from jewelml/test-matching-route
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "test-matching-route",
"version": "2.0.0",
"description": "Simple express-like socket routing for websockets, event emitters and socket.io ",
"main": "bundle/tmr.cjs.js",
"module": "bundle/tmr.esm.js",
"browser": "bundle/tmr.umd.js",
"web": "bundle/tmr.iife.js",
"node": "bundle/tmr.cjs.js",
"es": "bundle/tmr.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"testlegacy": "nyc mocha -r @std/esm \"test/**/*.{js,mjs}\"",
"test": "jest --coverage",
"doc": "esdoc",
"compile":"tsc",
"build": "tsc && rollup -c && esdoc",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jewelml/test-matching-route.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jewelml/test-matching-route/issues"
},
"engines": {
"node": ">=10"
},
"author": {
"name": "Yaw Etse",
"url": "https://github.com/yawetse"
},
"keywords": [
"events",
"router",
"express",
"socket.io",
"websockets",
"routing",
"sockets"
],
"homepage": "https://github.com/jewelml/test-matching-route",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@repetere/esdoc-inject-gtm-plugin": "^0.1.0",
"@std/esm": "^0.26.0",
"@types/jest": "^24.0.19",
"babel-jest": "^24.9.0",
"babel-plugin-istanbul": "^4.1.6",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-inject-script-plugin": "^1.0.0",
"esdoc-publish-markdown-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"esm": "^3.0.72",
"jest": "^24.9.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rollup": "^1.1.2",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.1",
"routes": "^2.1.0",
"sinon": "^6.1.4",
"sinon-chai": "^3.2.0",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"typescript": "^3.6.4"
},
"dependencies": {
"path-to-regexp": "^3.0.0"
},
"@std/esm": "cjs",
"nyc": {
"extension": [
".mjs"
],
"include": [
"lib/**/*.mjs"
],
"require": [
"@std/esm"
]
}
}