-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "nativescript-environment-variables-hook",
"version": "1.0.5",
"description": "Add env variables to your manifest and plist file.",
"nativescript": {
"platforms": {
"android": "8.0.0",
"ios": "8.0.0"
},
"hooks": [
{
"type": "after-prepare",
"script": "lib/after-prepare.js",
"inject": true
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/herefishyfish/nativescript-environment-variables-hook.git"
},
"scripts": {
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS",
"env",
"vars",
"Environment",
"CICD",
"Hook"
],
"author": "Dylan Llewellyn <[email protected]> (https://github.com/herefishyfish)",
"bugs": {
"url": "https://github.com/herefishyfish/nativescript-environment-variables-hook/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/herefishyfish/nativescript-environment-variables-hook",
"dependencies": {
"@nativescript/hook": "^2.0.0",
"dotenv": "^10.0.0",
"handlebars": "^4.7.7",
"app-root-path": "^3.0.0"
}
}