forked from expo-community/standard-version-expo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "@mccraveiro/standard-version-expo",
"version": "2.0.5",
"description": "Automatic Expo versioning with Standard Version",
"keywords": [
"expo",
"standard",
"version",
"release",
"bycedric"
],
"author": "Cedric van Putten <[email protected]> (https://bycedric.com)",
"contributors": [
"Mateus Craveiro <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/mccraveiro/standard-version-expo#readme",
"repository": {
"type": "git",
"url": "https://github.com/mccraveiro/standard-version-expo.git"
},
"bugs": {
"url": "https://github.com/mccraveiro/standard-version-expo/issues"
},
"main": "manifest/version.js",
"files": [
"android",
"build",
"ios",
"manifest"
],
"scripts": {
"test": "jest",
"lint": "eslint . --ext js,ts",
"build": "tsc",
"clean": "git clean -xdf build",
"release": "standard-version",
"prerelease": "npm run clean && npm run build"
},
"dependencies": {
"@expo/config": "^8.0.2",
"@expo/json-file": "^8.2.37",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"globby": "^14.0.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.10.4",
"@types/semver": "^7.5.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.42.0",
"eslint-config-universe": "^12.0.0",
"jest": "^29.5.0",
"prettier": "^3.1.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}