forked from ionic-team/create-capacitor-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.9 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
{
"name": "@capacitor/create-plugin",
"version": "0.7.4",
"description": "Generate a new Capacitor plugin",
"author": "Ionic Team <[email protected]>",
"homepage": "https://capacitorjs.com",
"engines": {
"node": ">=10.3.0"
},
"main": "./dist/index.js",
"bin": {
"create-capacitor-plugin": "bin/create-capacitor-plugin"
},
"scripts": {
"pack-assets": "node ./scripts/pack-assets.mjs",
"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 && npm run pack-assets && tsc",
"clean": "rimraf ./dist",
"watch": "tsc -w",
"release": "np --no-tests",
"prepublishOnly": "npm run build"
},
"files": [
"assets/plugin-template.tar.gz",
"bin/",
"dist/"
],
"keywords": [
"capacitor",
"universal app",
"progressive web apps",
"cross platform"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/create-capacitor-plugin.git"
},
"bugs": {
"url": "https://github.com/ionic-team/create-capacitor-plugin/issues"
},
"license": "MIT",
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"dependencies": {
"@ionic/utils-fs": "^3.1.3",
"debug": "^4.1.1",
"kleur": "^4.0.3",
"mustache": "^4.0.1",
"prompts": "^2.3.2",
"tar": "^6.0.2",
"tslib": "^2.0.1"
},
"devDependencies": {
"@ionic/eslint-config": "^0.2.1",
"@ionic/prettier-config": "^1.0.0",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.1",
"@types/mustache": "^4.0.1",
"@types/prompts": "^2.0.8",
"@types/tar": "^4.0.3",
"eslint": "^7.9.0",
"np": "^6.5.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "~3.8.3"
}
}