-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "vue-cli-plugin-pod",
"version": "0.0.5",
"description": "Extended cli to manage vue project files",
"main": "./service/index.js",
"scripts": {
"tsc": "tsc",
"watch": "tsc --watch",
"lint": "eslint .",
"prettify": "prettier 'src/**/*.ts' --write",
"npm": "npm run tsc & npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prakashchokalingam/vue-cli-plugin-pod.git"
},
"keywords": [
"vue-pod"
],
"author": "Prakash Chokalingam",
"license": "ISC",
"bugs": {
"url": "https://github.com/prakashchokalingam/vue-cli-plugin-pod/issues"
},
"homepage": "https://github.com/prakashchokalingam/vue-cli-plugin-pod#readme",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@types/fs-extra": "^9.0.11",
"chalk": "^4.1.1",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}