forked from infinum/emotion-normalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "@gradeproof/emotion-normalize",
"version": "11.0.0",
"private": true,
"description": "Normalize file for emotion JSS library",
"main": "dist/index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/infinum/emotion-normalize.git"
},
"keywords": [
"emotion",
"normalize",
"jss",
"css",
"styles",
"import",
"components"
],
"author": "Infinum JavaScript Team <hello@infinum.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/infinum/emotion-normalize/issues"
},
"homepage": "https://github.com/infinum/emotion-normalize#readme",
"scripts": {
"prebuild": "./bin/build.js",
"build": "babel src --out-dir dist",
"update": "ncu -u normalize.css",
"prepublishOnly": "npm run update && npm run prebuild",
"postversion": "git push origin master --tags && npm publish"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@emotion/react": "^11.0.0-next.13",
"normalize.css": "^8.0.1",
"npm-check-updates": "^7.0.1"
},
"peerDependencies": {
"@emotion/react": "11.x",
"react": "16.x"
}
}