forked from PierreNansot/capacitor-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 926 Bytes
/
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
{
"name": "capacitor-plugins",
"private": true,
"scripts": {
"build": "lerna run build",
"watch": "lerna run --parallel --stream watch",
"lint": "npm run scripts:prettier -- --check && lerna run lint",
"fmt": "npm run scripts:prettier -- --write && lerna run fmt",
"scripts:prettier": "npx prettier \"scripts/**/*.mjs\"",
"apply-patches": "node ./scripts/apply-patches.mjs",
"toggle-local": "node ./scripts/toggle-local.mjs",
"update-all": "node ./scripts/update-all.mjs",
"set-capacitor-version": "node ./scripts/set-capacitor-version.mjs",
"postinstall": "lerna bootstrap",
"release": "lerna publish"
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@ionic/prettier-config": "^1.0.1",
"@types/prompts": "^2.0.8",
"esm": "^3.2.25",
"lerna": "^3.22.1",
"prettier": "^2.1.2",
"prompts": "^2.3.2"
},
"prettier": "@ionic/prettier-config"
}