forked from capacitor-community/http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.63 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": "0.2.1",
"description": "A native HTTP plugin for CORS-free requests and file transfers",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"prepublishOnly": "npm run build",
"npm-publish": "np"
},
"author": "Max Lynch <[email protected]>",
"license": "MIT",
"dependencies": {
"@capacitor/core": "latest"
},
"devDependencies": {
"@capacitor/android": "latest",
"@capacitor/ios": "latest",
"@ionic/prettier-config": "^1.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"husky": "^4.2.5",
"multer": "^1.4.2",
"np": "^6.2.3",
"prettier": "^2.0.5",
"prettier-plugin-java": "^0.8.0",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"typescript": "^3.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"
}
}