-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "nativescript-hook-filter-modules",
"version": "1.0.5",
"description": "Shrinking size of built application by deleting defined set of node_modules inside tns_modules",
"main": "index.js",
"nativescript": {
"hooks": [
{
"type": "after-prepare",
"script": "after-prepare-hook.js",
"inject": true
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/markosko/nativescript-hook-filter-modules.git"
},
"keywords": [
"NativeScript",
"nativescript-hook-filter-modules",
"nativescript",
"nativescript-hook",
"shrinking"
],
"author": {
"name": "Marek Maszay",
"email": "[email protected]",
"url": "https://github.com/markosko"
},
"contributors": [
{
"name": "Brad Martin",
"email": "[email protected]",
"url": "https://github.com/bradmartin"
}
],
"license": {
"type": "MIT",
"url": "https://github.com/markosko/nativescript-hook-filter-modules/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/markosko/nativescript-hook-filter-modules/issues"
},
"homepage": "https://github.com/markosko/nativescript-hook-filter-modules",
"readmeFilename": "README.md",
"scripts": {
"demo.ios": "npm run preparedemo && cd demo && tns emulate ios",
"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-hook-filter-modules && tns plugin add .. && tns install",
"setup": "cd demo && npm install && tns plugin add .. && cd ..",
"start": "npm run demo.android",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
},
"dependencies": {
"find-remove": "^1.0.0",
"nativescript-hook": "^0.2.1",
"shelljs": "^0.7.4"
}
}