-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "vue-library-cli",
"version": "0.0.1",
"description": "vue library cli",
"main": "index.js",
"bin": {
"baka": "./bin/www"
},
"scripts": {
"compile": "babel src -d dist",
"watch": "npm run compile -- --watch",
"lint": "eslint --ext .js --fix ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/falstack/vue-library-cli.git"
},
"keywords": [
"vue",
"library",
"cli"
],
"author": "falstack",
"license": "MIT",
"bugs": {
"url": "https://github.com/falstack/vue-library-cli/issues"
},
"homepage": "https://github.com/falstack/vue-library-cli#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.0",
"download-git-repo": "^2.0.0",
"ini": "^1.3.5",
"inquirer": "^7.0.0",
"log-symbols": "^3.0.0",
"ora": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.2.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
}
}