-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "nativescript-tests-hook",
"version": "0.0.1",
"author": "Juan Delgadillo <[email protected]> (https://github.com/JuanDelgadillo)",
"description": "Nativescript plugin that lets you handling your Nativescript tests like the angular style guide",
"repository": {
"type": "git",
"url": "https://github.com/JuanDelgadillo/nativescript-tests-hook"
},
"bugs": {
"url": "https://github.com/JuanDelgadillo/nativescript-tests-hook/issues"
},
"nativescript": {
"platforms": {
"android": "2.4.1",
"ios": "2.4.0"
},
"hooks": [
{
"type": "before-prepare",
"script": "lib/before-prepare.js",
"inject": true
}
],
"tns-ios": {
"version": "2.4.0"
},
"tns-android": {
"version": "2.4.1"
}
},
"scripts": {
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
},
"keywords": [
"Nativescript",
"Hooks",
"Angular",
"Tests"
],
"preferGlobal": false,
"private": false,
"license": "MIT",
"dependencies": {
"del": "^2.2.0",
"gulp": "^3.9.1",
"run-sequence": "^1.1.5"
}
}