forked from styled-components/styled-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "styled-components-project",
"private": true,
"scripts": {
"build": "wsrun -p styled-components --exclude-missing build",
"postbuild": "cp README.md packages/styled-components/",
"postinstall": "wsrun -p styled-components --stages generateErrors",
"dev": "wsrun --exclude-missing dev",
"lint": "wsrun --exclude-missing lint",
"size": "wsrun --exclude-missing lint:size",
"test": "wsrun --exclude-missing test",
"prepublishOnly": "run-s build test",
"prebenchmark": "wsrun --stages --exclude-missing build",
"benchmark": "wsrun -p @styled-components/benchmarks --stages start"
},
"author": "Glen Maddern",
"license": "MIT",
"bugs": {
"url": "https://github.com/styled-components/styled-components/issues"
},
"homepage": "https://styled-components.com",
"devDependencies": {
"wsrun": "^5.0.2"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"engines": {
"node": ">=10"
},
"resolutions": {
"@jest/create-cache-key-function": "^27.0.1"
}
}