-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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
{
"name": "react-flexbox-z",
"version": "4.0.0",
"description": "React wrapper for flexbox",
"main": "build/index.js",
"module": "build/index.esm.js",
"browser": "build/index.js",
"upkg": "build/index.min.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"scripts": {
"clean": "rimraf ./build",
"build": "rollup -c",
"cb": "npm run clean && npm run build",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/delpikye-v/react-flexbox-z.git"
},
"homepage": "https://github.com/delpikye-v/react-flexbox-z#readme",
"keywords": [
"react",
"components",
"flexbox",
"flex",
"flex-layout",
"layout",
"react-flexbox",
"basic-flexbox",
"wrap-flexbox",
"react-library"
],
"author": "Delpi.Kye",
"license": "MIT",
"bugs": {
"url": "https://github.com/delpikye-v/react-flexbox-z/issues"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^24.9.1",
"@types/react": "17.0.20",
"@types/react-dom": "17.0.9",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"jest": "^26.6.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"dependencies": {
"styled-components": ">=5.2.1"
}
}