UNPKG

2.18 kBJSONView Raw
1{
2 "name": "rebass",
3 "version": "3.0.0",
4 "description": "React primitive UI components built with styled-system",
5 "main": "dist/index.js",
6 "sideEffects": false,
7 "scripts": {
8 "prepare": "npm run clean && babel src -d dist && npm run emotion",
9 "emotion": "NODE_ENV=emotion babel src -d emotion",
10 "clean": "rm -rf dist",
11 "start": "mdx-go docs",
12 "docs": "mdx-go build docs -d site",
13 "cover": "jest --coverage && npx codecov",
14 "test": "jest",
15 "size": "npx bundlesize"
16 },
17 "keywords": [
18 "components",
19 "react",
20 "react-component",
21 "ui",
22 "design-system",
23 "styled-system",
24 "styled-components",
25 "presentational",
26 "stateless",
27 "functional"
28 ],
29 "author": "Brent Jackson",
30 "license": "MIT",
31 "dependencies": {
32 "styled-system": "^3.1.11"
33 },
34 "devDependencies": {
35 "@babel/cli": "^7.1.5",
36 "@babel/core": "^7.1.5",
37 "@babel/preset-env": "^7.1.5",
38 "@babel/preset-react": "^7.0.0",
39 "@emotion/core": "^10.0.0",
40 "@emotion/styled": "^10.0.0",
41 "babel-core": "^7.0.0-bridge.0",
42 "babel-plugin-transform-rename-import": "^2.3.0",
43 "buble": "0.19.4",
44 "jest": "^23.6.0",
45 "jest-styled-components": "^6.2.2",
46 "mdx-go": "^2.0.0-31",
47 "react": "^16.6.3",
48 "react-dom": "^16.6.3",
49 "react-test-renderer": "^16.6.3",
50 "styled-components": "^4.1.1"
51 },
52 "peerDependencies": {
53 "styled-components": ">=4.0.0"
54 },
55 "repository": {
56 "type": "git",
57 "url": "https://github.com/rebassjs/rebass.git"
58 },
59 "bugs": {
60 "url": "https://github.com/rebassjs/rebass/issues"
61 },
62 "homepage": "https://github.com/rebassjs/rebass",
63 "jest": {
64 "testMatch": [
65 "**/test/**/*.js"
66 ],
67 "setupTestFrameworkScriptFile": "jest-styled-components",
68 "coverageReporters": [
69 "html",
70 "lcov"
71 ],
72 "coverageThreshold": {
73 "global": {
74 "branches": 100,
75 "functions": 100,
76 "lines": 100,
77 "statements": 100
78 }
79 },
80 "coveragePathIgnorePatterns": [
81 "/node_modules/",
82 "/dist/"
83 ]
84 },
85 "bundlesize": [
86 {
87 "path": "./dist/*.js",
88 "maxSize": "1.5 kB"
89 }
90 ]
91}