-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
136 lines (136 loc) · 3.59 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@prontopro/react-rating",
"version": "0.2.0",
"description": "React-based rating component empowered by styled-components",
"main": "dist/react-rating.min.js",
"files": [
"README.md",
"LICENSE.md",
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ProntoPro/react-rating.git"
},
"moduleRoots": [
"",
"src"
],
"keywords": [
"rating",
"react",
"component",
"react-component",
"styled-components"
],
"author": "ProntoPro",
"contributors": [
{
"name": "David Sorrentino",
"email": "[email protected]",
"url": "https://github.com/dapids"
},
{
"name": "Filippo Sarzana",
"email": "[email protected]",
"url": "https://github.com/filipposarzana"
},
{
"name": "Paolo Rovella",
"email": "[email protected]",
"url": "https://github.com/paolorovella"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ProntoPro/react-rating/issues"
},
"homepage": "https://github.com/ProntoPro/react-rating",
"bundlesize": [
{
"path": "./dist/react-rating.js",
"maxSize": "10 kB"
},
{
"path": "./dist/react-rating.min.js",
"maxSize": "5 kB"
}
],
"jest": {
"coverageReporters": [
"text-summary",
"html"
],
"collectCoverageFrom": [
"src/components/**/*.js",
"src/utils/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"setupTestFrameworkScriptFile": "<rootDir>/.config/jest.js"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-tap-event-plugin": "^3.0.0",
"styled-components": "^3.1.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-inline-import-data-uri": "^1.0.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.12",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bundlesize": "0.17.0",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "5.0.1",
"eslint-config-airbnb": "17.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-watch": "4.0.0",
"html-webpack-plugin": "3.2.0",
"jest": "23.3.0",
"jest-enzyme": "6.0.2",
"open-browser-webpack-plugin": "^0.0.5",
"prop-types": "^15.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-tap-event-plugin": "^3.0.2",
"styled-components": "^3.1.6",
"uglify-js": "^3.1.1",
"webpack": "4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "3.1.4"
},
"scripts": {
"build": "webpack --config .config/webpack.dist.config.js",
"bundle:check": "bundlesize",
"dist": "yarn build && yarn docs",
"docs": "webpack --config .config/webpack.config.js",
"eslint": "esw --clear --cache",
"eslint:watch": "yarn eslint -w",
"preversion": "echo \"Error: you shall not pass!\" && exit 1",
"start": "webpack-dev-server --watch --config .config/webpack.config.js --host 127.0.0.1 --content-base docs/",
"test:ci": "yarn test --colors --lastCommit --silent",
"test:watch": "yarn test --watch",
"test": "jest test --coverage --env=jsdom"
},
"directories": {
"doc": "docs"
}
}