-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "auto-inject-loader",
"version": "1.0.7",
"description": "Auto import the source what we need",
"author": "perfectyang",
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"prebuild": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"build": "node node_modules/gulp/bin/gulp.js"
},
"engines": {
"node": ">= 10.13.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/perfectyang/auto-inject-loader.git"
},
"bugs": {
"url": "https://github.com/perfectyang/auto-inject-loader/issues"
},
"homepage": "https://github.com/perfectyang",
"keywords": [
"ast",
"vue",
"auto-import"
],
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/generator": "^7.5.5",
"@babel/parser": "^7.5.5",
"@babel/preset-env": "^7.9.0",
"@babel/template": "^7.4.4",
"@babel/traverse": "^7.5.5",
"@babel/types": "^7.5.5",
"vue-template-compiler": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"cross-env": "^7.0.2",
"gulp": "^4.0.2",
"gulp-uglify": "^3.0.2"
}
}