-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "mock-match-media",
"version": "0.4.3",
"description": "mock window.matchMedia for tests or node",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"browser": "./dist/index.mjs"
},
"./package.json": "./package.json",
"./polyfill": {
"require": "./polyfill.js",
"import": "./polyfill.mjs"
},
"./jest-setup": {
"require": "./jest-setup.cjs"
}
},
"repository": "[email protected]:Ayc0/mock-match-media.git",
"author": "Ayc0 <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/Ayc0/mock-match-media/issues",
"homepage": "https://github.com/Ayc0/mock-match-media#readme",
"keywords": [
"match-media",
"mock",
"test",
"jest",
"ssr",
"server-side-rendering"
],
"scripts": {
"build": "rm -rf dist && microbundle --target node -f esm,cjs",
"test": "ava",
"prepublishOnly": "yarn build"
},
"dependencies": {
"css-mediaquery": "^0.1.2"
},
"devDependencies": {
"ava": "^4.0.1",
"microbundle": "^0.14.2",
"mock-match-media": "link:."
}
}