-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.88 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.88 KB
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
{
"name": "react-styled-flex",
"version": "2.2.0",
"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": "ppiyush13@gmail.com"
},
"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",
"pretty": "prettier --write ."
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.15",
"@types/testing-library__jest-dom": "^5.14.1",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"alpha-ci": "^0.0.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.5",
"jest-junit": "^13.0.0",
"jest-styled-components": "^7.0.5",
"microbundle": "^0.14.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-cli": "^10.0.0",
"remark-lint": "^9.1.0",
"remark-lint-heading-increment": "^3.1.0",
"remark-preset-lint-recommended": "^6.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.58.0",
"rollup-plugin-dts": "^4.0.0",
"styled-components": ">=5.2.3",
"ts-expect": "^1.3.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"peerDependencies": {
"react": ">=16.0.0",
"styled-components": ">=5.1.0"
}
}