-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.08 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
{
"name": "res",
"description": "Device resolution detection module",
"version": "0.4.0",
"homepage": "https://github.com/ryanve/res",
"license": "MIT",
"author": "Ryan Van Etten",
"keywords": [
"device",
"screen",
"browser",
"resolution",
"detection",
"responsive",
"retina",
"device-pixel-ratio",
"ender",
"mobile",
"detect",
"dpr"
],
"main": "res.js",
"scripts": {
"pretest": "jshint res.js && jshint test.js",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanve/res.git"
},
"devDependencies": {
"actual": "^0.2.0",
"aok": "^1.9.0",
"jshint": "^2.9.3",
"sos": "0.0.1"
},
"jshintConfig": {
"asi": true,
"boss": true,
"browser": true,
"eqnull": true,
"expr": true,
"lastsemic": true,
"latedef": "nofunc",
"laxcomma": true,
"maxcomplexity": 10,
"maxerr": 4,
"maxlen": 115,
"maxparams": 4,
"node": true,
"sub": true,
"supernew": true,
"trailing": true,
"undef": true,
"unused": true
}
}