UNPKG

1.1 kBJSONView Raw
1{
2 "name": "nativescript-unit-test-runner",
3 "version": "0.7.0",
4 "description": "NativeScript unit test runner component.",
5 "main": "app.js",
6 "scripts": {
7 "test": "exit 0",
8 "postinstall": "node postinstall.js",
9 "preuninstall": "node preuninstall.js",
10 "prepack": "npm i --ignore-scripts && tsc --removeComments --sourceMap false && tns plugin build"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/NativeScript/nativescript-unit-test-runner.git"
15 },
16 "author": "Telerik <support@telerik.com>",
17 "license": "Apache-2.0",
18 "devDependencies": {
19 "@types/node": "8.10.30",
20 "tns-core-modules": "5.1.2",
21 "typescript": "2.9.2"
22 },
23 "nativescript": {
24 "platforms": {
25 "android": "1.6.0",
26 "ios": "1.6.0"
27 },
28 "hooks": [
29 {
30 "type": "after-prepare",
31 "script": "./lib/after-prepare.js",
32 "inject": true
33 },
34 {
35 "type": "before-liveSync",
36 "script": "lib/before-liveSync.js",
37 "inject": true
38 }
39 ]
40 },
41 "dependencies": {
42 "nativescript-hook": "0.2.4"
43 }
44}