-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.07 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "branch-cordova-sdk",
"description": "Branch Metrics Cordova SDK",
"main": "src/index.js",
"version": "3.0.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",
"scripts": {
"validate": " echo 'run validation scripts'; node ./src/scripts/npm/updatePluginXml",
"travis-deploy-once": " echo 'prevent multiple deploys'; travis-deploy-once",
"commitmsg": " echo 'validate commit messages'; commitlint -e $GIT_PARAMS",
"precommit": " echo 'run prettier on commit'; lint-staged",
"examples": " echo 'generate examples'; node ./src/scripts/examples",
"prettier": " echo 'run prettier'; prettier --write './{src,testbed,tests}/**/*.js'",
"lint": " echo 'run code linter'; eslint --ext=js --fix ./src",
"semantic-release": " echo 'run continuous integration'; semantic-release"
},
"dependencies": {
"mkpath": "^1.0.0",
"node-version-compare": "^1.0.1",
"plist": "^3.0.1",
"request": "^2.85.0",
"xml2js": "^0.4.19"
},
"eslintConfig": {
"extends": [
"airbnb-base/legacy",
"prettier"
],
"rules": {
"no-console": 0,
"no-alert": 0,
"no-use-before-define": 0
},
"globals": {
"Promise": true,
"Branch": true
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git",
"@semantic-release/npm"
],
"verifyRelease": [
{
"path": "@semantic-release/exec",
"cmd": "node ./src/scripts/npm/updateNpmVersion"
}
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
"@semantic-release/git"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/exec": "^2.2.4",
"@semantic-release/git": "^4.0.3",
"@semantic-release/github": "^4.2.15",
"@semantic-release/npm": "^3.2.5",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"prettier": "^1.12.1",
"semantic-release": "^15.2.0",
"travis-deploy-once": "^5.0.0"
}
}