-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 1.9 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
{
"name": "nativescript-remote-builds",
"version": "1.1.1",
"description": "Run NativeScript apps with local LiveSync without any local Android/iOS setup.",
"main": "index.js",
"scripts": {
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NativeScript/nativescript-remote-builds.git"
},
"keywords": [
"nativescript",
"tns",
"cloud",
"run",
"livesync",
"circle",
"circleci",
"local",
"setup"
],
"author": "NativeScript",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/NativeScript/nativescript-remote-builds/issues"
},
"homepage": "https://github.com/NativeScript/nativescript-remote-builds#readme",
"nativescript": {
"hooks": [
{
"type": "before-checkEnvironment",
"script": "src/hooks/before-checkEnvironment.js",
"inject": true
},
{
"type": "before-checkForChanges",
"script": "src/hooks/before-checkForChanges.js",
"inject": true
},
{
"type": "before-prepare",
"script": "src/hooks/before-prepare.js",
"inject": true
},
{
"type": "before-buildAndroid",
"script": "src/hooks/before-buildAndroid.js",
"inject": true
},
{
"type": "before-buildIOS",
"script": "src/hooks/before-buildIOS.js",
"inject": true
},
{
"type": "before-resolveCommand",
"script": "src/hooks/before-resolveCommand.js",
"inject": true
}
],
"platforms": {
"android": "6.4.0",
"ios": "6.4.0"
}
},
"dependencies": {
"@nativescript/hook": "^2.0.0",
"command-exists": "^1.2.8",
"lodash": "^4.17.15",
"semver": "^7.1.3",
"unique-string": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}