-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.84 KB
/
package.json
File metadata and controls
91 lines (91 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "lit-vue",
"version": "0.0.0",
"description": "Using all the goodies of Vue SFC directly in JavaScript files.",
"main": "index.js",
"files": [
"lib",
"loader.js",
"index.js"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "xo",
"commit": "git-cz",
"example": "poi --config example/poi.config.js -so"
},
"repository": {
"url": "egoist/lit-vue",
"type": "git"
},
"author": "egoist<0x142857@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.2.2",
"@babel/parser": "^7.2.3",
"@babel/traverse": "^7.2.3",
"stringify-attributes": "^1.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.2.3",
"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",
"poi": "^12.2.14",
"prettier": "^1.15.2",
"semantic-release": "^15.13.2",
"vue": "^2.5.21",
"vue-class-component": "^6.3.2",
"vue-template-compiler": "^2.5.21",
"xo": "^0.23.0"
},
"xo": {
"extends": [
"rem",
"plugin:prettier/recommended"
],
"envs": [
"jest"
],
"rules": {
"no-new": "off",
"unicorn/filename-case": "off"
},
"ignores": [
"example/**"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"xo --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"ignore": [
"example/**"
]
},
"release": {
"branch": "master"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}