-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
118 lines (118 loc) · 3.18 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@prepair/require-extension-vue",
"version": "5.1.0",
"description": "Simple vue file support for node. Mainly for testing purposes.",
"main": "./src/index.js",
"exports": "./src/index.js",
"type": "commonjs",
"scripts": {
"lint": "eslint src --ext .js,.ts,.vue",
"lint:all": "npm run lint --workspaces --include-workspace-root --if-present",
"test": "npm run test --workspaces --if-present",
"prerelease": "npm run lint && npm run test",
"release": "git checkout master && git pull --rebase origin master && standard-version && git push --follow-tags origin master && npm publish --access=public",
"prepare": "husky"
},
"workspaces": [
"test/vue2",
"test/vue3"
],
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"vueIndentScriptAndStyle": false,
"endOfLine": "lf"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier",
"eslint"
]
},
"engines": {
"node": ">=18.18.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prepair/require-extension-vue.git"
},
"author": "Zoltan Feher <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prepair/require-extension-vue/issues"
},
"homepage": "https://github.com/prepair/require-extension-vue#readme",
"keywords": [
"vue",
"require",
"extension",
"hook",
"node"
],
"devDependencies": {
"@babel/core": "^7.25.7",
"@tsconfig/node18": "^18.2.4",
"@types/babel__core": "^7.20.5",
"@types/convert-source-map": "^2.0.3",
"@types/find-cache-dir": "^3.2.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.19.54",
"@types/ramda": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.28.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "~5.5.4",
"vue2": "npm:vue@^2.7.16",
"vue3": "npm:vue@^3.4.38"
},
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"ajv": "^8.17.1",
"convert-source-map": "^2.0.0",
"find-cache-dir": "^3.3.2",
"fs-extra": "^11.2.0",
"loglevel": "^1.9.2",
"merge-source-map": "^1.1.0",
"pirates": "^4.0.6",
"ramda": "^0.30.1",
"source-map": "^0.7.4",
"source-map-support": "^0.5.21"
},
"peerDependencies": {
"@babel/core": "7.x",
"@babel/preset-env": "7.x",
"@babel/preset-typescript": "7.x",
"vue": "^3 || ^2.7"
},
"peerDependenciesMeta": {
"@babel/core": {
"optional": true
},
"@babel/preset-env": {
"optional": true
},
"@babel/preset-typescript": {
"optional": true
}
}
}