-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 833 Bytes
/
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
{
"name": "w3counter",
"version": "3.0.1",
"description": "Get ten most popular screen resolutions, browsers and operating systems",
"license": "MIT",
"repository": "kevva/w3counter",
"author": {
"name": "Kevin Mårtensson",
"email": "kevinmartensson@gmail.com",
"url": "https://github.com/kevva"
},
"engines": {
"node": ">=4"
},
"bin": {
"w3counter": "cli.js"
},
"scripts": {
"test": "xo && ava",
"prepublish": "./make.js"
},
"files": [
"cli.js",
"index.js",
"data.json",
"lib"
],
"keywords": [
"browser",
"os",
"popular",
"screen",
"size",
"w3counter"
],
"dependencies": {
"cheerio": "^0.22.0",
"got": "^7.0.0",
"meow": "^3.1.0"
},
"devDependencies": {
"ava": "*",
"pify": "^3.0.0",
"xo": "*"
}
}