-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.79 KB
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
{
"name": "prefetch-preload",
"version": "0.0.3",
"description": "data preloading solution for project",
"main": "cjs/index.js",
"module": "esm/index.js",
"author": "sdpfe-group",
"maintainers": [
"lns567"
],
"scripts": {
"clean": "rimraf build",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm && npm run copy:files",
"test": "NODE_ENV=test jest",
"copy:files": "cpx \"{package.json,LICENSE,README.md}\" build/",
"deploy": "npm run build && cd build && npm publish",
"deploy:beta": "npm run build && cd build && npm publish --tag beta",
"deploy:local": "npm run build && cd build && npm link"
},
"keywords": [
"vue2",
"assets prefetch",
"data preload",
"vue3",
"react"
],
"peerDependencies": {
"babel-core": "6.26.3",
"babel-loader": ">=7.1.5",
"vue-loader": ">=14.2.4",
"babel-eslint": "^10.1.0",
"webpack": "^5.0.0",
"html-webpack-plugin": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/jest": "^26.0.0",
"@types/webpack": "^5.28.5",
"@types/webpack-sources": "^3.2.3",
"@vue/test-utils": "^1.0.0",
"babel-jest": "^26.0.0",
"cpx": "^1.5.0",
"jest": "^26.0.0",
"rimraf": "^5.0.7",
"ts-loader": "^9.0.0",
"typescript": "^4.9.5",
"vue-jest": "^3.0.0",
"vue-loader": "^14.2.4",
"vue-template-compiler": "^2.6.0",
"webpack-cli": "^4.0.0",
"webpack-node-externals": "^2.5.0",
"webpack-sources": "^3.2.3",
"babel-eslint": "10.1.0"
},
"engines": {
"node": "14.x"
},
"engine-strict": true,
"license": "MIT",
"dependencies": {
"safe-require": "^1.0.4"
}
}