-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
56 lines (56 loc) · 3.1 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
{
"nativescript": {
"id": "org.nativescript.plugindemo.AppSync",
"tns-ios": {
"version": "6.2.0"
},
"tns-android": {
"version": "6.5.4"
}
},
"scripts": {
"appsync.register": "nativescript-app-sync register",
"appsync.login": "nativescript-app-sync login",
"appsync.list-apps": "nativescript-app-sync app ls",
"appsync.android.stats": "nativescript-app-sync deployment ls AppSyncDemoAndroid --displayKeys",
"appsync.ios.stats": "nativescript-app-sync deployment ls AppSyncDemoIOS --displayKeys",
"appsync.android.history": "nativescript-app-sync deployment history AppSyncDemoAndroid Staging",
"appsync.ios.history": "nativescript-app-sync deployment history AppSyncDemoIOS Staging",
"appsync.ios": "nativescript-app-sync release AppSyncDemoIOS ios --description 'AppSync iOS version!'",
"appsync.ios.mandatory": "nativescript-app-sync release AppSyncDemoIOS ios --mandatory --description 'Mandatory iOS version!'",
"appsync.ios.buildrelease": "nativescript-app-sync release AppSyncDemoIOS ios --build --isReleaseBuildType",
"appsync.android": "nativescript-app-sync release AppSyncDemoAndroid android --description 'AppSync Android version!'",
"appsync.android.mandatory": "nativescript-app-sync release AppSyncDemoAndroid android --mandatory --description 'Mandatory AppSync Android version!'",
"appsync.android.v2": "nativescript-app-sync release AppSyncDemoAndroid android --description 'Awesome Android version!' --targetBinaryVersion 2.0.0",
"appsync.android.release": "nativescript-app-sync release AppSyncDemoAndroid android -deploymentName Staging --build --isReleaseBuildType --keystorePath \"/Users/eddyverbruggen/Desktop/werkmap/Android dev X-Services/xservices.keystore\" --keystorePassword YOUR_PASSWORD --keystoreAlias xservices --keystoreAliasPassword YOUR_PASSWORD",
"appsync.ios.rollback": "nativescript-app-sync rollback AppSyncDemoIOS Staging",
"appsync.ios.clear": "nativescript-app-sync deployment clear AppSyncDemoIOS Staging",
"appsync.android.rollback": "nativescript-app-sync rollback AppSyncDemoAndroid Staging",
"appsync.android.clear": "nativescript-app-sync deployment clear AppSyncDemoAndroid Staging",
"build.plugin": "cd ../src && npm i && npm run build && npm run package",
"ci.tslint": "npm i && tslint --config '../tslint.json' 'demoapp/**/*.ts' --exclude '**/node_modules/**' --exclude '**/typings/**'"
},
"dependencies": {
"nativescript-app-sync": "file:../publish/package/nativescript-app-sync-3.0.0.tgz",
"nativescript-theme-core": "~1.0.4",
"nativescript-unit-test-runner": "0.7.0",
"tns-core-modules": "~6.5.24"
},
"devDependencies": {
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"filewalker": "0.1.2",
"jasmine-core": "^2.5.2",
"karma": "4.1.0",
"karma-jasmine": "2.0.1",
"karma-nativescript-launcher": "^0.4.0",
"karma-webpack": "3.0.5",
"lazy": "1.0.11",
"nativescript-dev-webpack": "1.3.0",
"tns-ios": "6.5.4",
"tns-platform-declarations": "~6.2.0",
"tslint": "~5.20.0",
"typescript": "~3.5.3"
}
}