-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "babel-plugin-vue-jsx-scoped-css",
"version": "0.0.2",
"main": "dist/index.js",
"description": ":hammer: CSS encapsulation solution for Vue JSX",
"repository": "git@github.com:Mrminfive/babel-plugin-vue-jsx-scoped-css.git",
"author": "minfive <chenxiaowu1994@outlook.com> (http://blog.minfive.com/)",
"license": "MIT",
"private": false,
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.json",
"dev": "rm -rf dist && tsc -w -p ./tsconfig.json",
"lint": "eslint --ext .js,.ts --cache .",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/types": "^7.6.1",
"md5": "^2.2.1"
},
"devDependencies": {
"@types/babel__core": "^7.1.3",
"@types/jest": "^24.0.18",
"@types/md5": "^2.1.33",
"@types/node": "^12.7.11",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"@vue/babel-preset-jsx": "^1.1.0",
"eslint": "^6.5.0",
"eslint-config-mlint": "^1.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tsconfig": "^7.0.0",
"typescript": "^3.5.3",
"vue": "^2.6.10"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"eslint",
"git add"
],
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}