-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.3 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
{
"name": "extrapolished",
"version": "0.0.6",
"description": "A library that helps you create viewport-based ExtraPolated values with ease for use with your favorite React css-in-js library.",
"main": "dist/extrapolished.cjs.js",
"jsnext:main": "dist/extrapolished.esm.js",
"module": "dist/extrapolished.esm.js",
"browser": {
"./dist/extrapolished.esm.js": "./dist/extrapolished.browser.esm.js",
"./dist/extrapolished.cjs.js": "./dist/extrapolished.browser.cjs.js"
},
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RodrigoQuesadaDev/extrapolished.git"
},
"files": [
"/dist"
],
"keywords": [
"extrapolation",
"interpolation",
"react",
"css",
"css-in-js",
"styles",
"responsive",
"px",
"extrapolished"
],
"author": "RodrigoDEV",
"license": "MIT",
"bugs": {
"url": "https://github.com/RodrigoQuesadaDev/extrapolished/issues"
},
"homepage": "https://github.com/RodrigoQuesadaDev/extrapolished",
"peerDependencies": {
"react": ">= ^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/node": "^13.7.7",
"@types/react": "^16.9.23",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.3.0",
"hoist-non-react-statics": "^3.3.2",
"react": "^16.13.0",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.26.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/lodash-es": "^4.17.3",
"fast-memoize": "^2.5.2",
"lodash-es": "^4.17.15",
"memoize-one": "^5.1.1",
"react-use": "^13.27.0"
}
}