forked from egoist/styled-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 1.75 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
82
83
84
85
86
87
{
"name": "styled-vue",
"version": "0.1.3",
"description": "Zero-runtime CSS-in-JS for Vue.js.",
"main": "lib/index.js",
"files": [
"lib",
"nuxt",
"poi",
"compiler.js"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "xo",
"toc": "markdown-toc README.md -i",
"example": "poi --config example/poi.config.js -so"
},
"repository": {
"url": "egoist/styled-vue",
"type": "git"
},
"author": "egoist<[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.2.2",
"@babel/parser": "^7.2.3",
"@babel/traverse": "^7.2.3",
"@babel/types": "^7.2.2",
"posthtml": "^0.11.3",
"vue-template-compiler": "^2.5.21"
},
"devDependencies": {
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-rem": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.0.0-rc.13",
"jest": "^23.6.0",
"lint-staged": "^7.2.0",
"markdown-toc": "^1.2.0",
"poi": "^12.2.14",
"polished": "^2.3.1",
"prettier": "^1.15.2",
"semantic-release": "^15.13.3",
"vue": "^2.5.21",
"xo": "^0.23.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"ignores": [
"**/example/**"
],
"envs": [
"jest"
],
"rules": {
"unicorn/filename-case": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"README.md": [
"markdown-toc -i",
"prettier --write",
"git add"
],
"*.{json,md,vue}": [
"prettier --write",
"git add"
]
},
"release": {
"branch": "master"
}
}