-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
70 lines (70 loc) · 2.26 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
{
"name": "react-filter-control",
"version": "2.1.0",
"main": "dist/react-filter-control.min.js",
"author": {
"name": "Alexander Komarov",
"email": "alexander.s.komarov@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/komarovalexander/react-filter-control"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"jest-transform-css": "^2.0.0",
"react-scripts": "^3.2.0",
"react-test-renderer": "^16.6.1",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-strip-prop-types": "^1.0.2",
"rollup-plugin-uglify": "^6.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "rollup -c -o dist/react-filter-control.min.js",
"lint": "eslint src/",
"lint-fix": "eslint src/ --fix",
"test": "jest",
"coverage": "react-scripts test --env=jsdom --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eject": "react-scripts eject"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.6.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}