forked from ionic-team/migrate-capacitor-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 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
50
51
52
53
54
55
{
"name": "@capacitor/plugin-migration-v4-to-v5",
"version": "0.0.9",
"description": "Utility to help migrate Capacitor 4 plugins to Capacitor 5",
"main": "./dist/index.js",
"scripts": {
"lint": "npm run eslint && npm run prettier -- --check",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint . --ext ts",
"prettier": "prettier \"**/*.{css,html,js,mjs,ts}\"",
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/migrate-capacitor-plugin.git"
},
"bin": {
"plugin-migration-v4-to-v5": "bin/migrate-capacitor-plugin"
},
"files": [
"bin/",
"dist/"
],
"keywords": [
"capacitor"
],
"author": "Ionic Team <hi@ionicframework.com>",
"license": "MIT",
"prettier": "@ionic/prettier-config",
"bugs": {
"url": "https://github.com/ionic-team/migrate-capacitor-plugin/issues"
},
"homepage": "https://github.com/ionic-team/migrate-capacitor-plugin#readme",
"devDependencies": {
"@ionic/prettier-config": "^2.1.0",
"@types/node": "^16.18.24",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"dependencies": {
"@ionic/cli-framework-output": "^2.2.6",
"@ionic/utils-fs": "^3.1.7",
"detect-package-manager": "^2.0.1",
"kleur": "^4.1.5",
"rimraf": "^5.0.0",
"semver": "^7.5.0"
}
}