-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.17 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
{
"name": "semantic-release-react-native",
"version": "1.12.1",
"description": "Semantic Release plugin for versioning React Native applications.",
"author": "Alex Mendes",
"license": "ISC",
"main": "index.js",
"scripts": {
"build": "tsc -d",
"prebuild": "rimraf dist",
"test": "jest",
"lint": "eslint .",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexandermendes/semantic-release-react-native.git"
},
"homepage": "https://github.com/alexandermendes/semantic-release-react-native#readme",
"bugs": {
"url": "https://github.com/alexandermendes/semantic-release-react-native/issues"
},
"files": [
"src",
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"semantic-release",
"react-native",
"version",
"release",
"prepare"
],
"peerDependencies": {
"semantic-release": "*"
},
"dependencies": {
"app-root-path": "^3.0.0",
"deepmerge": "^4.2.2",
"detect-indent": "^6.1.0",
"html-minifier": "^4.0.0",
"js-beautify": "^1.14.5",
"lodash.flattendeep": "^4.4.0",
"lodash.uniq": "^4.5.0",
"pbxproj-dom": "^1.2.0",
"plist": "^3.0.6",
"semver": "^7.3.7"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/app-root-path": "^1.2.4",
"@types/html-minifier": "^4.0.2",
"@types/jest": "^27.4.0",
"@types/js-beautify": "^1.13.3",
"@types/lodash.flattendeep": "^4.4.7",
"@types/lodash.uniq": "^4.5.7",
"@types/plist": "^3.0.2",
"@types/semantic-release": "^17.2.4",
"@types/semver": "^7.3.12",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"commitlint": "^8.3.5",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"husky": "^4.2.5",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}