-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.48 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.48 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
{
"name": "react-styled-box",
"version": "1.3.0",
"description": "Styled component with simple mapping to basic position oriented styles",
"author": "Piotr Tomasz Monarski",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Monar/react-styled-box"
},
"main": "lib/react-styled-box.cjs.js",
"module": "lib/react-styled-box.es.js",
"files": [
"lib"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"test:coverage": "jest --env=jsdom --coverage",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard",
"testAndBuild": "yarn test; yarn build"
},
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"enzyme-to-json": "3.3.4",
"jest": "23.6.0",
"jest-enzyme": "7.0.1",
"jest-styled-components": "6.3.1",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-test-renderer": "16.6.3",
"rollup": "0.67.3",
"rollup-plugin-babel": "4.0.3",
"styled-components": "4.1.1"
},
"peerDependencies": {
"prop-types": "*",
"styled-components": "*"
},
"keywords": [
"react",
"styled-components",
"component",
"styled",
"flexbox",
"box"
]
}