-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathpackage.json
77 lines (77 loc) · 2.15 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"nativescript": {
"id": "org.nativescript.ngtests",
"tns-android": {
"version": "2.5.0"
},
"tns-ios": {
"version": "2.5.0"
}
},
"name": "ngtests",
"main": "app.js",
"version": "1.0.0",
"author": "Telerik <[email protected]>",
"description": "Angular tests",
"license": "BSD",
"keywords": [
"telerik",
"mobile",
"angular",
"nativescript",
"{N}",
"tns",
"appbuilder",
"template"
],
"homepage": "http://nativescript.org",
"dependencies": {
"@angular/animations": "~4.0.0",
"@angular/common": "~4.0.0",
"@angular/compiler": "~4.0.0",
"@angular/core": "~4.0.0",
"@angular/forms": "~4.0.0",
"@angular/http": "~4.0.0",
"@angular/platform-browser": "~4.0.0",
"@angular/platform-browser-dynamic": "~4.0.0",
"@angular/router": "~4.0.0",
"nativescript-angular": "../nativescript-angular",
"nativescript-unit-test-runner": "^0.3.4",
"rxjs": "^5.2.0",
"tns-core-modules": "internal-preview",
"zone.js": "^0.8.2"
},
"devDependencies": {
"babel-traverse": "6.8.0",
"babel-types": "6.8.1",
"babylon": "6.8.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"filewalker": "0.1.2",
"grunt-cli": "^1.2.0",
"karma": "^0.13.19",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.2.0",
"karma-nativescript-launcher": "^0.4.0",
"lazy": "1.0.11",
"mocha": "^2.4.5",
"nativescript-dev-appium": "0.0.14",
"nativescript-dev-typescript": "^0.3.1",
"socket.io": "1.4.8",
"socket.io-client": "1.4.8",
"tslint": "^4.5.1",
"typescript": "~2.2.0",
"wd": "0.4.0"
},
"scripts": {
"test": "npm run test-android",
"test-android": "tns test android --emulator --justlaunch",
"test-ios": "tns test ios --emulator --justlaunch",
"updateTests": "grunt updateTests",
"appium-android": "tns build android && npm run run-appium-android",
"run-appium-android": "nativescript-dev-appium android",
"appium-ios-simulator": "tns build ios && nativescript-dev-appium ios-simulator",
"tslint": "tslint --project tsconfig.json --config tslint.json"
}
}