-
Notifications
You must be signed in to change notification settings - Fork 144
/
package.json
77 lines (77 loc) · 1.97 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
{
"name": "branch-cordova-sdk",
"description": "Branch Metrics Cordova SDK",
"main": "src/index.js",
"version": "6.4.0",
"homepage": "https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking",
"repository": {
"type": "git",
"url": "https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking.git"
},
"bugs": {
"url": "https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking/issues"
},
"platforms": [
"android",
"ios"
],
"license": "MIT",
"engines": [
{
"name": "cordova",
"version": ">=8.0.0"
}
],
"scripts": {
"commitmsg": " echo 'validate commit messages'; commitlint -e $GIT_PARAMS",
"precommit": " echo 'run prettier on commit'; lint-staged",
"prettier": " echo 'run prettier'; prettier --write './{src,testbed,tests}/**/*.js'",
"lint": " echo 'run code linter'; eslint --ext=js --fix ./src",
"examples": " echo 'generate examples'; node ./src/scripts/examples"
},
"eslintConfig": {
"extends": [
"airbnb-base/legacy"
],
"rules": {
"no-console": 0,
"no-alert": 0,
"no-use-before-define": 0
},
"globals": {
"Promise": true,
"Branch": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"glob": "^8.0.3",
"mkpath": "^1.0.0",
"node-version-compare": "^1.0.3",
"plist": "^3.0.5",
"shelljs": "^0.8.5",
"xcode": "^3.0.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"fs": "0.0.1-security",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2"
}
}