forked from EddyVerbruggen/nativescript-feedback
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.87 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
{
"name": "nativescript-feedback",
"version": "1.0.6",
"description": "Non-blocking textual feedback for your NativeScript app. AKA superfancy Toasts!",
"main": "feedback",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "2.5.0",
"ios": "2.5.0"
}
},
"scripts": {
"build": "tsc -skipLibCheck",
"demo.ios": "npm run preparedemo && cd demo && tns run ios",
"demo.android": "npm run preparedemo && cd demo && tns run android",
"test": "npm i && cd demo && npm i && cd .. && npm run build && npm run tslint && cd demo && tns build android",
"test.ios": "cd demo && tns test ios",
"test.android": "cd demo && tns test android",
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-feedback && tns plugin add .. && tns install",
"setup": "npm i && cd demo && npm i && cd .. && npm run build && cd demo && tns plugin add .. && cd ..",
"tslint": "tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\" --exclude \"platforms/**\" --exclude \"demo/platforms/**\""
},
"repository": {
"type": "git",
"url": "https://github.com/EddyVerbruggen/nativescript-feedback.git"
},
"keywords": [
"ecosystem:nativescript",
"NativeScript",
"JavaScript",
"Android",
"iOS",
"Feedback",
"Notification",
"Message",
"Toast",
"Snackbar"
],
"author": {
"name": "Eddy Verbruggen",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/EddyVerbruggen/nativescript-feedback/issues"
},
"license": "MIT",
"homepage": "https://github.com/EddyVerbruggen/nativescript-feedback",
"readmeFilename": "README.md",
"devDependencies": {
"tns-core-modules": "^3.1.0",
"tns-platform-declarations": "^3.1.0",
"typescript": "~2.3.0",
"prompt": "^1.0.0",
"rimraf": "^2.5.0",
"tslint": "^5.0.0"
}
}