-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.78 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-custom-entitlements",
"version": "0.2.0",
"description": "Nativescript hook for supporting custom Xcode 8 entitlements",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"demo.ios": "npm run preparedemo && cd demo && ENV=tst tns emulate ios --log trace",
"demo.android": "npm run preparedemo && cd demo && tns run android",
"debug.ios": "npm run preparedemo && cd demo && tns debug ios --emulator",
"debug.android": "npm run preparedemo && cd demo && tns debug android --emulator",
"preparedemo": "cd demo && tns plugin remove nativescript-custom-entitlements && tns plugin add .. && tns install",
"resetdemo": "cd demo && tns plugin remove nativescript-custom-entitlements && tns plugin add .. && tns prepare android && tns prepare ios && cd ..",
"afterprepare": "cd demo && tns prepare android && tns prepare ios && cd ..",
"setup": "cd demo && npm install && tns plugin add .. && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Essent/nativescript-custom-entitlements.git"
},
"keywords": [
"nativescript"
],
"author": "Henk Bakker",
"license": "MIT",
"bugs": {
"url": "https://github.com/Essent/nativescript-custom-entitlements/issues"
},
"homepage": "https://github.com/Essent/nativescript-custom-entitlements#readme",
"nativescript": {
"hooks": [
{
"type": "before-prepare",
"script": "lib/before-prepare.js",
"inject": true
},
{
"type": "after-prepare",
"script": "lib/after-prepare.js",
"inject": true
}
]
},
"dependencies": {
"fs-promise": "^2.0.0",
"nativescript-hook": "^0.2.1"
}
}