-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.68 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.68 KB
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
{
"name": "nativescript-adobe-marketing-cloud",
"version": "1.5.0",
"description": "Nativescript Adobe marketing cloud integration plugin",
"main": "adobe-analytics",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "3.4.0",
"ios": "3.4.0"
}
},
"scripts": {
"tsc": "tsc -skipLibCheck",
"build": "npm i && tsc",
"postclone": "npm i && node scripts/postclone.js && cd ../demo && npm i && cd ../src && npm run plugin.link",
"test.android": "npm i && npm run tsc && npm run tslint && cd ../demo && tns build android && tns test android --justlaunch",
"test.ios": "npm i && npm run tsc && npm run tslint && cd ../demo && tns build ios && tns test ios --justlaunch",
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json",
"plugin.link": "npm link && cd ../demo && npm link nativescript-adobe-marketing-cloud && cd ../src",
"plugin.tscwatch": "npm run tsc -- -w",
"demo.ios": "npm i && npm run tsc && cd ../demo && tns run ios --syncAllFiles",
"demo.android": "npm i && npm run tsc && cd ../demo && tns run android --syncAllFiles",
"demo.reset": "cd ../demo && rm -rf platforms/",
"plugin.prepare": "npm run tsc && cd ../demo && tns plugin remove nativescript-adobe-marketing-cloud && tns plugin add ../src",
"clean": "cd ../demo && rm -rf node_modules/ hooks/ platforms/ && cd ../src && rm -rf node_modules/ && npm run plugin.link",
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'"
},
"repository": {
"type": "git",
"url": "https://github.com/Essent/nativescript-adobe-marketing-cloud.git"
},
"keywords": [
"NativeScript",
"JavaScript",
"Android",
"iOS",
"Adobe",
"Adobe Mobile SDK"
],
"author": {
"name": "Essent"
},
"contributors": [
"Jasper Boeijenga <jasper.boeijenga@essent.nl>",
"Henk Bakker <spike1292@gmail.com>",
"Oscar Lodriguez <o.lodriguez@gmail.com>",
"Robert Jan Van der Hulst <rvdhulst@quintor.nl>",
"Steve Jackson <stevenljackson1@gmail.com>",
"Corné de Bruin <corne.de.bruin@navara.nl>"
],
"license": "MIT",
"homepage": "https://github.com/Essent/nativescript-adobe-marketing-cloud",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^3.4.0",
"tns-platform-declarations": "^3.4.0",
"tslint": "^5.9.1",
"typescript": "2.3.4"
},
"peerDependencies": {
"tns-core-modules": "^3.4.0"
},
"bootstrapper": "nativescript-plugin-seed"
}