-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "standard-version-expo",
"version": "1.0.3",
"description": "Automatic Expo versioning with Standard Version",
"keywords": [
"expo",
"standard",
"version",
"release",
"bycedric"
],
"author": "Cedric van Putten <me@bycedric.com> (https://bycedric.com)",
"license": "MIT",
"homepage": "https://github.com/expo-community/standard-version-expo#readme",
"repository": {
"type": "git",
"url": "https://github.com/expo-community/standard-version-expo.git"
},
"bugs": {
"url": "https://github.com/expo-community/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": "^3.1.2",
"@expo/json-file": "^8.2.10",
"detect-indent": "^6.0.0",
"detect-newline": "^3.1.0",
"globby": "^11.0.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.0",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^7.32.0",
"eslint-config-universe": "^9.0.0",
"jest": "^25.3.0",
"prettier": "^2.5.1",
"standard-version": "^7.1.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}