-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "react-library-starter",
"version": "0.1.0",
"description": "A simple boilerplate to help get started in creating production ready react libraries",
"main": "dist/custom-button.js",
"module": "dist/custom-button.es.js",
"umd": "dist/custom-button.umd.js",
"scripts": {
"test": "jest",
"lint": "eslint src/*",
"coverage": "jest --coverage",
"prepublish": "npm run build",
"build": "rollup -c rollup.config.js",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"files": [
"dist",
"README.md"
],
"author": "Ademola Adegbuyi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^5.13.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.0.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^6.1.2",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.4"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/src/**.js"
]
}
}