forked from microsoft/cordova-plugin-code-push
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "@areo/capacitor-codepush",
"version": "1.0.0-capacitor.3",
"description": "CodePush Plugin for Capacitor",
"main": "bin/www/codePush.js",
"repository": "github:areo/capacitor-codepush",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"capacitor",
"code",
"push",
"ecosystem:capacitor",
"capacitor-android",
"capacitor-ios"
],
"author": "Microsoft Corporation",
"license": "MIT",
"types": "./bin/www/codePush.d.ts",
"devDependencies": {
"@capacitor/core": "^1.3.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/git": "^7.1.0-beta.11",
"@types/assert": "^1.4.3",
"@types/cordova": "0.0.34",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/power-assert": "^1.5.0",
"@types/q": "^1.5.2",
"archiver": "^3.1.1",
"body-parser": "^1.19.0",
"del": "^5.1.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": "^3.1.0",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"mocha-junit-reporter": "^1.23.1",
"q": "^1.5.1",
"replace": "^1.1.1",
"run-sequence": "^2.2.1",
"semantic-release": "^16.0.0-beta.41",
"tslint": "^5.19.0",
"typescript": "^3.7.2"
},
"dependencies": {
"code-push": "^3.0.1"
},
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}