-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.19 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
{
"name": "nativescript-dev-assets",
"version": "0.0.7",
"description": "Simple hook allowing you to sync static files into the assets folder inside your Android app.",
"scripts": {
"test.android": "cd demo && tns install ../ && tns prepare android",
"test.ios": "cd demo && tns install ../ && tns prepare ios",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
},
"license": "MIT",
"dependencies": {
"async-each": "^1.0.1",
"nativescript-hook": "^0.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/rhanb/nativescript-dev-assets.git"
},
"author": {
"name": "rhanb",
"email": "[email protected]"
},
"keywords": [
"NativeScript",
"Android",
"Hook",
"Assets",
"JavaScript"
],
"nativescript": {
"platforms": {
"android": "3.2.0",
"ios": "3.2.0"
},
"plugin": {
"nan": "true",
"pan": "true",
"core3": "true",
"vue": "true",
"webpack": "false",
"category": "Developer"
},
"hooks": [
{
"type": "after-prepare",
"script": "lib/after-prepare.js",
"inject": true
}
]
}
}