-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "react-styledown",
"version": "1.0.3",
"description": "Helper to pass a styled-components styling down to its child",
"main": "dist/index.js",
"repository": "https://github.com/tobilen/react-styledown.git",
"author": "[Florian Becker<florian.becker@invision.de>, Tobias Lengsholz<tobias.lengsholz@invision.de>]",
"license": "MIT",
"dependencies": {
"@types/react": "^16.9.19",
"@types/styled-components": "5.0.1"
},
"devDependencies": {
"@invisionag/jest-styled-components": "^7.0.1",
"@rollup/plugin-typescript": "^3.0.0",
"@testing-library/jest-dom": "^5.0.2",
"@testing-library/react": "^10.0.1",
"@types/jest": "^25.1.1",
"@types/node": "^12.12.31",
"jest": "^25.1.0",
"prettier": "^2.0.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^2.1.0",
"styled-components": "^5.0.1",
"ts-jest": "^25.1.0",
"tslib": "^1.9.3",
"typescript": "^3.2.2"
},
"peerDependencies": {
"@types/styled-components": "^5.0.1",
"react": ">=15.x.x",
"react-dom": ">=15.x.x",
"styled-components": ">=3.x.x"
},
"scripts": {
"build": "tsc --p . --emitDeclarationOnly && rollup -c",
"dev": "rollup -c -w",
"lint": "prettier --check '**/*.{js,ts,tsx,json,md}' --single-quote --trailing-comma all",
"format": "prettier --write '**/*.{js,ts,tsx,json,md}' --single-quote --trailing-comma all",
"test": "yarn lint && yarn jest"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
]
}