forked from egoist/vue-compile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.36 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
{
"name": "vue-compile",
"version": "0.0.0-semantic-release",
"description": "Pre-compile each blocks of your Vue single-file components.",
"repository": {
"url": "egoist/vue-compile",
"type": "git"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"babel.js"
],
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint src/**/*.ts",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"console.log('\\u001b[35m\\u001b[1mLove vue-compile? You can now donate to support the author:\\u001b[22m\\u001b[39m\\n> \\u001b[36mhttps://github.com/sponsors/egoist\\u001b[39m')\""
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.13.15",
"@babel/plugin-syntax-typescript": "^7.12.13",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@vue/compiler-sfc": "^3.0.11",
"cac": "^6.7.2",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"debug": "^4.3.1",
"fast-glob": "^3.2.5",
"fs-extra": "^9.1.0",
"is-binary-path": "^2.1.0",
"joycon": "^3.0.1",
"lodash.clonedeep": "^4.5.0",
"postcss": "^8.2.10",
"postcss-load-config": "^3.0.1",
"resolve": "^1.20.0",
"resolve-from": "^5.0.0",
"stringify-attributes": "^2.0.0"
},
"devDependencies": {
"@egoist/prettier-config": "^0.1.0",
"@sucrase/jest-plugin": "^2.1.0",
"@types/debug": "^4.1.4",
"@types/fs-extra": "^8.0.0",
"@types/is-binary-path": "^2.1.0",
"@types/jest": "^26.0.14",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node-sass": "^4.11.0",
"@types/stringify-attributes": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-rem": "^4.0.0",
"eslint-config-xo-typescript": "^0.38.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.0",
"jest": "^24.8.0",
"lint-staged": "^10.4.0",
"prettier": "^2.2.1",
"stylus": "^0.54.5",
"typescript": "^4.2.4",
"vue": "^3.0.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src}/**/*.ts": [
"eslint --fix"
]
},
"release": {
"branch": "master"
}
}