-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.29 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.29 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
{
"name": "style-genie",
"version": "0.4.1",
"description": "A style utility for css-in-js frameworks.",
"scripts": {
"build": "pika build",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier --write .",
"version": "yarn run build",
"release": "np",
"link": "cd pkg && yarn link && cd .."
},
"keywords": [
"css-in-js",
"style",
"styled-components",
"jss",
"utils"
],
"author": "Jose Quintas",
"license": "MIT",
"resolutions": {
"np": "^7.5.0"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.3",
"csstype": "^3.0.8",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"np": "^7.5.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}