-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "veui-loader",
"version": "2.17.10",
"description": "webpack loader for VEUI.",
"main": "lib/index.js",
"repository": "ecomfe/veui",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir lib",
"test": "export NODE_OPTIONS=--openssl-legacy-provider && pnpm build && ava",
"prepare": "pnpm build"
},
"keywords": [
"webpack",
"loader",
"veui"
],
"dependencies": {
"loader-utils": "^2.0.4",
"magic-string": "^0.25.9",
"pkg-dir": "^4.2.0",
"slash": "^3.0.0"
},
"peerDependencies": {
"veui": "*"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/runtime": "^7.17.9",
"ava": "^3.15.0",
"esm": "^3.2.25",
"raw-loader": "^0.5.1",
"veui": "workspace:*",
"veui-theme-dls": "workspace:*",
"webpack": "^4.46.0"
},
"ava": {
"require": [
"esm"
],
"files": [
"test/index.js"
]
}
}