forked from Kikobeats/aspect-ratio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.33 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": "aspect-ratio",
"description": "Get the screen aspect ratio of a device",
"homepage": "https://github.com/Kikobeats/aspect-ratio",
"version": "2.1.1",
"main": "src",
"bin": {
"aspect-ratio": "bin/index.js"
},
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"contributors": [
{
"name": "Michael W. Clark",
"email": "michaelwclark@gmail.com"
},
{
"name": "Andrei Vinaga",
"email": "andrei.vinaga@ownzones.com"
},
{
"name": "Trevor Blades",
"email": "tdblades@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kikobeats/aspect-ratio.git"
},
"bugs": {
"url": "https://github.com/Kikobeats/aspect-ratio/issues"
},
"keywords": [
"aspect",
"device",
"ratio",
"screen"
],
"dependencies": {
"meow": "latest"
},
"devDependencies": {
"mocha": "latest",
"should": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">=8"
},
"files": [
"bin",
"src"
],
"scripts": {
"lint": "standard-markdown && standard",
"pretest": "npm run lint",
"test": "mocha"
},
"license": "MIT",
"standard": {
"env": [
"mocha"
]
}
}