forked from egoist/vue-emotion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@egoist/vue-emotion",
"version": "0.5.0",
"description": "Seamlessly use emotion (CSS-in-JS) with Vue.js",
"publishConfig": {
"access": "public"
},
"repository": {
"url": "egoist/vue-emotion",
"type": "git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist/index.js",
"dist/index.esm.js",
"dist/server.js",
"/server.js"
],
"scripts": {
"test": "npm run lint && echo 'no tests!'",
"lint": "xo",
"prepublishOnly": "npm run build",
"build": "bili src/index.js,src/server.js --format cjs,esm --minimal",
"example": "poi -s",
"ssr-example": "saber ssr-example",
"build:example": "poi --prod",
"toc": "markdown-toc -i README.md"
},
"author": "EGOIST <0x142857@gmail.com>",
"license": "MIT",
"xo": {
"extends": [
"rem"
],
"ignores": [
"**/example/**"
],
"envs": [
"browser"
],
"rules": {
"camelcase": "off"
}
},
"dependencies": {
"@emotion/cache": "^10.0.19",
"@emotion/serialize": "^0.11.11",
"@emotion/utils": "^0.11.2",
"clsx": "^1.0.4",
"create-emotion-server": "^10.0.14"
},
"devDependencies": {
"babel-plugin-emotion": "^10.0.19",
"bili": "^4.8.1",
"eslint-config-rem": "^4.0.0",
"husky": "^3.0.7",
"lint-staged": "^9.4.0",
"markdown-toc": "^1.2.0",
"poi": "^12.7.3",
"saber": "^0.10.4",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"xo": "^0.25.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"README.md": [
"yarn markdown-toc -i",
"git add"
],
"src/*.js": [
"xo --fix",
"git add"
]
}
}