forked from bradmartin/nativescript-snackbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
{
"name": "nativescript-snackbar",
"version": "1.1.7",
"description": "A NativeScript plugin providing the Material Design SnackBar.",
"main": "snackbar",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"ios": "1.5.0",
"android": "1.5.0"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bradmartin/nativescript-snackbar"
},
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"keywords": [
"NativeScript",
"JavaScript",
"TypeScript",
"snackbar",
"android",
"ios",
"material design",
"bradmartin",
"sitefintysteve",
"NathanaelA",
"MarcBuils"
],
"author": "Brad Martin <[email protected]> (https://github.com/bradmartin)",
"contributors": [
{
"name": "Steve McNiven-Scott",
"email": "[email protected]",
"url": "https://github.com/sitefinitysteve"
},
{
"name": "Nathanael Anderson",
"url": "https://github.com/NathanaelA"
},
{
"name": "Marc Buils",
"email": "[email protected]",
"url": "http://www.marcbuils.fr/"
},
{
"name": "Rob Laverty",
"email": "[email protected]",
"url": "https://github.com/roblav96"
}
],
"license": "Apache-2.0",
"bugs": "https://github.com/bradmartin/nativescript-snackbar/issues",
"homepage": "https://github.com/bradmartin/nativescript-snackbar",
"devDependencies": {
"husky": "^0.13.4",
"lint-staged": "^3.6.1",
"prettier": "^1.4.4"
}
}