-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "vue-component-generator",
"version": "1.0.0",
"description": "VueJS Component Generator",
"main": "lib/vcg.js",
"scripts": {
"build": "rm -rf dist && npm run gulp -- build",
"gulp": "gulp",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://ParaDevil@github.com/ParaDevil/vue-component-generator.git"
},
"author": "DDDrop",
"license": "ISC",
"bin": {
"vcg": "dist/vcg.js"
},
"bugs": {
"url": "https://github.com/ParaDevil/vue-component-generator/issues"
},
"homepage": "https://github.com/ParaDevil/vue-component-generator#readme",
"dependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"command-line-args": "^2.1.3",
"del": "^2.2.0",
"fs-extra": "^0.26.2",
"gulp-babel": "^6.1.1",
"gulp": "^3.9.0",
"lodash": "^3.10.1",
"swig": "^1.4.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"run-sequence": "^1.2.1"
}
}