This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
71 lines (71 loc) · 1.8 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
{
"name": "@capacitor-community/http",
"version": "1.4.1",
"description": "A native HTTP plugin for CORS-free requests and file transfers",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && rollup -c rollup.config.js",
"ios:build": "cd ios && pod install && cd ..",
"docs": "typedoc src/web.ts src/definitions.ts",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"prepublishOnly": "npm run build && npm run ios:build",
"prepare": "husky install"
},
"author": "Max Lynch <[email protected]>, Thomas Vidas <[email protected]>",
"license": "MIT",
"dependencies": {
"@capacitor/android": "^3.0.0",
"@capacitor/core": "^3.0.0",
"@capacitor/filesystem": "^1.0.0",
"@capacitor/ios": "^3.0.0"
},
"devDependencies": {
"@ionic/prettier-config": "^1.0.1",
"all-contributors-cli": "^6.20.0",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"prettier-plugin-java": "^1.1.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.50.0",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"dist/",
"ios/",
"android/",
"CapacitorCommunityHttp.podspec"
],
"keywords": [
"capacitor",
"plugin",
"native"
],
"prettier": "@ionic/prettier-config",
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"repository": {
"type": "git",
"url": "https://github.com/capacitor-community/http"
},
"bugs": {
"url": "https://github.com/capacitor-community/http/issues"
}
}