forked from Dwimcore/capacitor-codepush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.44 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
{
"name": "@teammaestro/capacitor-codepush",
"version": "4.0.1",
"description": "CodePush Plugin for Capacitor Forked from MAPIACOMPANY",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"homepage": "https://github.com/teammaestro/capacitor-codepush",
"repository": "https://github.com/teammaestro/capacitor-codepush.git",
"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": "Robin Fournier <[email protected]>",
"license": "MIT",
"devDependencies": {
"@capacitor/android": "^4.6.2",
"@capacitor/cli": "^4.6.2",
"@capacitor/core": "^4.6.2",
"@capacitor/device": "^4.1.0",
"@capacitor/dialog": "^4.1.0",
"@capacitor/filesystem": "^4.1.4",
"@capacitor/ios": "^4.6.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@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": "^10.2.0",
"mocha-junit-reporter": "^2.0.0",
"q": "^1.5.1",
"replace": "^1.2.2",
"rollup": "^2.38.0",
"run-sequence": "^2.2.1",
"semantic-release": "^19.0.3",
"tslint": "^6.1.3",
"typescript": "~4.2.4"
},
"dependencies": {
"code-push": "4.0.5"
},
"peerDependencies": {
"@capacitor/core": "^4.0.0",
"@capacitor/device": "^4.0.0",
"@capacitor/dialog": "^4.0.0",
"@capacitor/filesystem": "^4.0.0"
},
"capacitor": {
"android": {
"src": "android"
},
"ios": {
"src": "ios"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}