-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "styled-normalize",
"version": "8.1.1",
"description": "Normalize.css for styled-components CSS-in-JS library",
"main": "dist/index.js",
"scripts": {
"prefetch": "node ./bin/fetch.js",
"update": "npm i normalize.css@latest && npm run prefetch",
"build": "babel -d dist src",
"prepare": "npm run build"
},
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/sergeysova/styled-normalize.git"
},
"keywords": [
"styled",
"components",
"normalize",
"css",
"react",
"jss",
"styles",
"import",
"export"
],
"author": "Sergey Sova <mail@sergeysova.com> (https://sergeysova.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sergeysova/styled-normalize/issues"
},
"homepage": "https://github.com/sergeysova/styled-normalize#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.5",
"babel-plugin-styled-components": "^1.8.0",
"normalize.css": "^8.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.0"
},
"peerDependencies": {
"styled-components": "^4.0.0 || ^5.0.0 || ^6.0.0"
}
}