-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.1 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
{
"name": "@qc/react-conditionals",
"version": "0.0.2",
"description": "A set of React components that conditionally renders its child components.",
"keywords": [
"case",
"component",
"condition",
"conditionals",
"else",
"flow control",
"if",
"is",
"react",
"test",
"then",
"when"
],
"author": {
"name": "Danny Hurlburt",
"url": "https://github.com/dhurlburtusa"
},
"homepage": "https://github.com/hypersoftllc/qc-react-conditionals",
"license": "ISC",
"browserslist": [
"> 0.5%"
],
"engines": {
"node": ">=7.4.0",
"npm": ">=4.0.0"
},
"files": [
"dist/",
"es/",
"lib/",
"src/",
"umd"
],
"main": "lib/index.js",
"module": "es/index.js",
"bugs": {
"url": "https://github.com/hypersoftllc/qc-react-conditionals/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hypersoftllc/qc-react-conditionals.git"
},
"jest": {
"roots": [
"<rootDir>/src/"
]
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "cross-env BABEL_ENV=cjs babel src -d lib/",
"build:es": "cross-env BABEL_ENV=es babel src -d es/",
"clean": "rimraf build/ coverage/ dist/ es/ lib/ umd/",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src/",
"prepublishOnly": "npm run clean && npm run lint && npm run coverage && npm run build",
"test": "jest --watch",
"travisci": "npm run coverage"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.4",
"eslint": "4.10.0",
"eslint-plugin-react": "^7.4.0",
"jest": "^22.4.3",
"prop-types": "^15.6.0",
"react": ">=15.x",
"react-error-boundary": "^1.2.1",
"react-test-renderer": ">=15.x",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"prop-types": ">=15.x",
"react": ">=15.x"
}
}