-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.15 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
{
"name": "react-styled-flex",
"version": "2.0.0-rc.3",
"description": "Simple, light, unopinionated, css standard compliant Flexbox component for React using Styled Components",
"keywords": [
"react-styled-flex",
"react",
"styled-components",
"styled",
"flexbox",
"flex",
"react-flex",
"styled-flex",
"react-flexbox",
"styled-flexbox",
"flex-gap",
"gap"
],
"homepage": "https://github.com/ppiyush13/react-styled-flex",
"bugs": {
"url": "https://github.com/ppiyush13/react-styled-flex/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ppiyush13/react-styled-flex.git"
},
"license": "MIT",
"author": {
"name": "Piyush Lodaya",
"email": "[email protected]"
},
"main": "./dist/react-styled-flex.js",
"unpkg": "./dist/react-styled-flex.umd.js",
"module": "./dist/react-styled-flex.esm.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "run-s lint:*",
"lint:code": "run-s \"lint:code:ci -- --fix\"",
"lint:code:ci": "eslint . --ext .js,.ts,.jsx,.tsx,.json",
"lint:md": "remark . --frail",
"test": "run-s test:*",
"test:types": "tsc --noEmit",
"test:code": "jest --coverage --ci --runInBand",
"build": "run-s build:*",
"build:clean": "rimraf dist",
"build:code": "microbundle --no-compress --format es,cjs,umd",
"build:types": "rollup --config",
"codecov": "codecov",
"release": "alpha"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@types/testing-library__jest-dom": "^5.9.5",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"alpha-ci": "^0.0.0",
"codecov": "^3.8.1",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"jest-styled-components": "^7.0.3",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-cli": "^9.0.0",
"remark-lint": "^8.0.0",
"remark-lint-heading-increment": "^2.0.1",
"remark-preset-lint-recommended": "^5.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"rollup-plugin-dts": "^3.0.1",
"styled-components": ">=5.2.3",
"ts-expect": "^1.3.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": ">=16.0.0",
"styled-components": ">=5.1.0"
}
}