-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "react-shadow-scroll",
"version": "2.1.1",
"description": "Component that customizes the list and inserts shadow when scrolling exists",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://react-shadow-scroll.netlify.com/",
"author": "André Lins <[email protected]> (https://andrelmlins.github.io/)",
"scripts": {
"start": "react-dependency-scripts start",
"build": "react-dependency-scripts build",
"build:app": "react-dependency-scripts build-app",
"test": "react-dependency-scripts test",
"coverage": "react-dependency-scripts test --coverage",
"lint": "eslint src/**/*.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andrelmlins/react-shadow-scroll.git"
},
"keywords": [
"react",
"scroll",
"shadow"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/andrelmlins/react-shadow-scroll/issues"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"prettier": "^1.19.1",
"react": "^17.0.1",
"react-dependency-scripts": "^1.0.6",
"react-dom": "^17.0.1",
"styled-components": "^5.0.1"
},
"dependencies": {
"resize-observer-polyfill": "^1.5.1",
"style-it": "^2.1.4"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 80,
"branches": 50,
"lines": 80,
"functions": 75
}
}
}
}