forked from ionic-team/native-run
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.92 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.92 KB
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
107
108
109
110
{
"name": "native-run",
"version": "1.3.0",
"description": "A CLI for running apps on iOS/Android devices and simulators/emulators",
"bin": {
"native-run": "bin/native-run"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"watch": "tsc -w",
"test": "jest --maxWorkers=4",
"lint": "npm run eslint && npm run prettier -- --check",
"fmt": "npm run eslint -- --fix && npm run prettier -- --write",
"prettier": "prettier \"**/*.ts\"",
"eslint": "eslint . --ext .ts",
"publish:ci": "semantic-release",
"publish:testing": "npm version prerelease --preid=testing --no-git-tag-version && npm publish --tag=testing && git stash",
"prepublishOnly": "npm run build",
"setup": "husky install"
},
"main": "dist/index.js",
"files": [
"assets",
"bin",
"dist"
],
"engines": {
"node": ">=10.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ionic-team/native-run.git"
},
"dependencies": {
"@ionic/utils-fs": "^3.0.0",
"@ionic/utils-terminal": "^2.3.1",
"bplist-parser": "0.2.0",
"debug": "^4.1.1",
"elementtree": "^0.1.7",
"ini": "^1.3.5",
"plist": "^3.0.1",
"split2": "^3.1.0",
"through2": "^4.0.2",
"tslib": "^2.0.1",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",
"@ionic/prettier-config": "^1.0.1",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/debug": "4.1.5",
"@types/elementtree": "^0.1.0",
"@types/fs-extra": "^8.1.1",
"@types/ini": "^1.3.30",
"@types/jest": "^26.0.13",
"@types/node": "^10.17.14",
"@types/plist": "^3.0.2",
"@types/slice-ansi": "^4.0.0",
"@types/split2": "^2.1.6",
"@types/through2": "^2.0.34",
"@types/yauzl": "^2.9.1",
"eslint": "^7.8.1",
"husky": "^5.0.4",
"jest": "^26.4.2",
"prettier": "^2.2.1",
"semantic-release": "^17.1.1",
"ts-jest": "^26.3.0",
"typescript": "~4.1.2"
},
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended",
"rules": {
"@typescript-eslint/explicit-module-boundary-types": [
"warn",
{
"allowArgumentsExplicitlyTypedAsAny": true
}
]
}
},
"release": {
"branches": "stable",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"keywords": [
"android",
"ios",
"cli",
"mobile",
"app",
"hybrid",
"native"
],
"author": "Ionic Team <hi@ionicframework.com> (https://ionicframework.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ionic-team/native-run/issues"
},
"homepage": "https://github.com/ionic-team/native-run#readme"
}