-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "eitherx",
"version": "1.0.3",
"description": "Binary Error Boundary Component",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"test": "jest",
"test:coverage": "npm test -- --coverage",
"build": "microbundle --name Eitherx --jsx React.createElement",
"prepublish": "npm run build && npm test -- --silent"
},
"keywords": [
"error",
"boundaries",
"boundary",
"either"
],
"author": "mfix22",
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": ">16.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"jest": "^21.2.1",
"microbundle": "^0.9.0",
"react": "latest",
"react-test-renderer": "^16.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mfix22/eitherx.git"
},
"bugs": {
"url": "https://github.com/mfix22/eitherx/issues"
},
"homepage": "https://github.com/mfix22/eitherx#readme"
}