-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 856 Bytes
/
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
{
"name": "react-reset-html",
"version": "0.2.0",
"description": "Style-reseted HTML elements as React-components",
"repository": "https://github.com/j-kallunki/react-reset-html",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc"
},
"files": [
"dist",
"README.md",
"index.d.ts"
],
"keywords": [
"react",
"reset",
"html",
"css",
"normalize"
],
"author": "Joonas Kallunki <[email protected]> (https://jkallunki.dev/)",
"license": "MIT",
"devDependencies": {
"@types/react": "16.9.2",
"@types/styled-components": "4.1.18",
"rimraf": "3.0.0",
"typescript": "3.6.2"
},
"dependencies": {
"normalize.cssinjs": "1.1.0",
"styled-components": "4.3.2"
},
"peerDependencies": {
"react": "16.9.0"
}
}