-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.18 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": "speculative",
"version": "0.1.2",
"description": "prerender, preconnect, preload, prefetch, dns-prefetch",
"main": "speculative.js",
"scripts": {
"lint": "jshint speculative.js && jshint test.js",
"test": "npm run lint && node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanve/speculative.git"
},
"keywords": [
"resource-hints",
"dns-prefetch",
"performance",
"preconnect",
"prerender",
"prefetch",
"browser",
"preload",
"speed",
"link",
"dom",
"dns",
"ux"
],
"author": "Ryan Van Etten",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanve/speculative/issues"
},
"homepage": "https://github.com/ryanve/speculative#readme",
"devDependencies": {
"jshint": "^2.9.3",
"open": "0.0.5"
},
"jshintConfig": {
"asi": true,
"boss": true,
"browser": true,
"debug": true,
"devel": true,
"eqnull": true,
"evil": true,
"expr": true,
"globals": {},
"latedef": "nofunc",
"laxcomma": true,
"maxerr": 5,
"node": true,
"sub": true,
"supernew": true,
"undef": true,
"unused": "vars"
}
}