-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.84 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.84 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "styled-conditions",
"version": "1.0.2",
"description": "Flag utility for emotion CSS-in-JS to conditionally apply styles",
"main": "dist/index.js",
"source": "lib/index.js",
"scripts": {
"build": "npm run build:clean && microbundle --compress -f cjs --sourcemap false --globals @emotion/core=core lib/index.js",
"build:clean": "rimraf dist",
"lint": "eslint lib",
"test": "ava",
"test:watch": "ava --watch --verbose --serial"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karolisgrinkevicius/styled-conditions.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"emotion",
"css-in-js",
"flags",
"conditional css in js",
"emotion react props",
"emotion flags",
"dynamic css",
"react"
],
"author": "Karolis Grinkevičius <k.grinkevicius@gmail.com> (https://www.karolisg.lt)",
"license": "MIT",
"bugs": {
"url": "https://github.com/karolisgrinkevicius/styled-conditions/issues"
},
"homepage": "https://github.com/karolisgrinkevicius/styled-conditions#readme",
"devDependencies": {
"@emotion/core": "^10.0.14",
"@styled-system/theme-get": "^5.0.12",
"ava": "^2.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"esm": "^3.2.25",
"husky": "^3.0.0",
"microbundle": "^0.11.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"@emotion/core": "^10.0.0",
"react": ">=16.3.0"
},
"ava": {
"require": [
"esm"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm test && npm run lint"
}
},
"engines": {
"node": ">=10.0.0"
}
}