-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "@alexsasharegan/react-match-media",
"version": "1.1.2",
"description": "A render prop component that provides idiomatic react component access to the match media API.",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"files": [
"cjs",
"esm",
"src"
],
"scripts": {
"prebuild": "rm -Rf lib cjs esm",
"build:docs": "typedoc --options typedoc.js",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "npm run build:cjs && npm run build:esm",
"prepublishOnly": "npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish --access public",
"test": "exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexsasharegan/react-match-media.git"
},
"author": "Alex Regan",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexsasharegan/react-match-media/issues"
},
"homepage": "https://github.com/alexsasharegan/react-match-media#readme",
"peerDependencies": {
"react": "^16.6.3"
},
"devDependencies": {
"@types/react": "^16.7.7",
"prettier": "^1.15.2",
"standard-version": "^4.4.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"dependencies": {}
}