This repository has been archived by the owner on Nov 1, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
119 lines (119 loc) · 4.24 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"bin": "build/main/src/cli/index.js",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "7.11.6",
"@babel/generator": "7.11.6",
"@babel/parser": "7.11.5",
"@babel/traverse": "7.11.5",
"chalk": "^4.1.0",
"glob": "^7.1.6",
"mkdirp": "^1.0.4",
"prompts": "^2.3.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"yargs": "^15.4.1"
},
"description": "Updates vue2 sfc components to vue3 composition api syntax.",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@bitjson/npm-scripts-info": "^1.0.0",
"@bitjson/typedoc": "^0.15.0-0",
"@types/babel__core": "^7.1.9",
"@types/babel__generator": "7.6.1",
"@types/babel__preset-env": "^7.9.0",
"@types/babel__traverse": "7.0.13",
"@types/eslint": "^7.2.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/gh-pages": "^3.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.13",
"@types/mkdirp": "^1.0.1",
"@types/prettier": "^2.1.0",
"@types/prompts": "^2.4.0",
"@types/rimraf": "^3.0.0",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"codecov": "^3.7.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^6.2.2",
"gh-pages": "^3.1.0",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"trash-cli": "^3.1.0",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=8.9"
},
"keywords": [
"composition",
"api",
"vue",
"typescript",
"javascript"
],
"license": "MIT",
"main": "build/main/src/index.js",
"module": "build/module/src/index.js",
"name": "vue2-migration-helper",
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": "https://github.com/mubaidr/vue2-migration-helper",
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p src/tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"clean": "trash build test",
"cov": "run-s build test:unit cov:html && open-cli coverage/lcov-report/index.html",
"cov:html": "jest --coverage",
"cov:send": "jest --coverage && codecov",
"describe": "npm-scripts-info",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude cli/**/*.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude cli/**/*.ts --target ES6 --mode file --json build/docs/typedoc.json",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"fix": "run-s fix:*",
"fix:eslint": "eslint --c ./src/.eslintrc.json --ext .ts ./src",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"prepare-release": "run-s reset test doc:html doc:publish",
"reset": "git clean -dfx && git reset --hard && npm i",
"test": "run-s build test:*",
"test:lint": "eslint --c ./src/.eslintrc.json --ext .ts ./src",
"test:unit": "jest",
"watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\""
},
"scripts-info": {
"build": "Clean and rebuild the project",
"cov": "Rebuild, run tests, then create and open the coverage report",
"doc": "Generate HTML API documentation and open it in a browser",
"doc:json": "Generate API documentation in typedoc JSON format",
"fix": "Try to automatically fix any linting problems",
"info": "Display information about the package scripts",
"prepare-release": "One-step: clean, build, test, publish docs, and prep a release",
"reset": "Delete all untracked files and reset the repo to the last commit",
"test": "Lint and unit test the project",
"watch": "Watch and rebuild the project on save, then rerun relevant tests"
},
"typings": "build/main/src/index.d.ts",
"version": "0.3.12"
}