UNPKG

1.24 kBJSONView Raw
1{
2 "name": "rollup-plugin-vue",
3 "version": "6.0.0-beta.3",
4 "license": "MIT",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "author": "Rahul Kadyan <hi@znck.me> (https://znck.me)",
8 "files": [
9 "dist"
10 ],
11 "scripts": {
12 "build": "tsc -p .",
13 "prepublishOnly": "tsc -p .",
14 "dev": "tsc -w -p .",
15 "test": "run-p test:*",
16 "test:unit": "jest",
17 "test:e2e": "jest --config jest.e2e.config.js"
18 },
19 "dependencies": {
20 "debug": "^4.1.1",
21 "hash-sum": "^2.0.0",
22 "rollup-pluginutils": "^2.8.2"
23 },
24 "peerDependencies": {
25 "@vue/compiler-sfc": "*"
26 },
27 "devDependencies": {
28 "@types/debug": "^4.1.5",
29 "@types/jest": "^25.2.3",
30 "@types/node": "^13.13.2",
31 "@vue/compiler-sfc": "^3.0.0-beta.14",
32 "husky": "^4.2.0",
33 "jest": "^26.0.1",
34 "lint-staged": "^10.1.7",
35 "npm-run-all": "^4.1.5",
36 "prettier": "^2.0.5",
37 "rollup": "^2.7.2",
38 "ts-jest": "^26.0.0",
39 "typescript": "^3.9.3"
40 },
41 "husky": {
42 "hooks": {
43 "pre-commit": "lint-staged"
44 }
45 },
46 "lint-staged": {
47 "*.{ts,js,json}": [
48 "prettier --write"
49 ]
50 },
51 "prettier": {
52 "printWidth": 80,
53 "trailingComma": "es5",
54 "semi": false,
55 "singleQuote": true
56 }
57}