forked from mpaghq/capacitor-codepush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.42 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "capacitor-codepush",
"version": "1.0.0",
"description": "CodePush Plugin for Capacitor",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"homepage": "https://github.com/mapiacompany/capacitor-codepush",
"repository": "github:mapiacompany/capacitor-codepush",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"lint": "npm run prettier -- --check && npm run swiftlint -- lint",
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
"swiftlint": "node-swiftlint",
"build": "npm run clean && tsc && rollup -c rollup.config.js",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"capacitor",
"code",
"push",
"ecosystem:capacitor",
"capacitor-android",
"capacitor-ios"
],
"author": "MAPIACOMPANY",
"license": "MIT",
"devDependencies": {
"@capacitor-community/http": "^1.0.0",
"@capacitor/cli": "^3.0.0",
"@capacitor/device": "^1.0.0",
"@capacitor/dialog": "^1.0.0",
"@capacitor/filesystem": "^1.0.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@semantic-release/git": "^9.0.0",
"@types/assert": "^1.5.4",
"@types/cordova": "0.0.34",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/power-assert": "^1.5.3",
"@types/q": "^1.5.4",
"archiver": "^5.2.0",
"body-parser": "^1.19.0",
"del": "^6.0.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"husky": "^4.3.8",
"mkdirp": "^1.0.4",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"q": "^1.5.1",
"replace": "^1.2.0",
"rollup": "^2.38.0",
"run-sequence": "^2.2.1",
"semantic-release": "^17.3.7",
"tslint": "^6.1.3",
"typescript": "~4.2.4"
},
"dependencies": {
"code-push": "^4.0.2"
},
"peerDependencies": {
"@capacitor-community/http": "^1.0.0",
"@capacitor/core": "^3.0.0",
"@capacitor/device": "^1.0.0",
"@capacitor/dialog": "^1.0.0",
"@capacitor/filesystem": "^1.0.0"
},
"capacitor": {
"android": {
"src": "android"
},
"ios": {
"src": "ios"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}