-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "@capacitor/plugin-migration-v6-to-v7",
"version": "0.0.2",
"description": "Utility to help migrate Capacitor 6 plugins to Capacitor 7",
"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,json}\"",
"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-v6-to-v7": "bin/migrate-capacitor-plugin"
},
"files": [
"bin/",
"dist/"
],
"keywords": [
"capacitor"
],
"author": "Ionic Team <hi@ionicframework.com>",
"license": "MIT",
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"bugs": {
"url": "https://github.com/ionic-team/migrate-capacitor-plugin/issues"
},
"homepage": "https://github.com/ionic-team/migrate-capacitor-plugin#readme",
"devDependencies": {
"@ionic/eslint-config": "^0.4.0",
"@ionic/prettier-config": "^4.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.17.6",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"typescript": "^5.0.4"
},
"dependencies": {
"@ionic/cli-framework-output": "^2.2.8",
"@ionic/utils-subprocess": "^3.0.1",
"fs-extra": "^11.2.0",
"kleur": "^4.1.5",
"rimraf": "^6.0.1",
"semver": "^7.6.3"
}
}