-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.41 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
{
"name": "squatter",
"version": "0.2.1",
"description": "Check if a namespace on npm is being hogged.",
"homepage": "https://github.com/sholladay/squatter",
"main": "index.js",
"author": {
"name": "Seth Holladay",
"url": "http://seth-holladay.com",
"email": "[email protected]"
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "[email protected]:sholladay/squatter.git"
},
"bugs": {
"url": "https://github.com/sholladay/squatter/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=8"
},
"license": "MPL-2.0",
"files": [
"lib",
"index.js"
],
"dependencies": {
"check-npm-dependents": "^1.0.0",
"got": "^9.0.0",
"p-every": "^1.0.2",
"p-one": "^1.0.0",
"package-json": "^5.0.0",
"semver": "^5.4.1"
},
"devDependencies": {
"ava": "^1.0.0-beta.7",
"eslint-config-tidy": "^0.6.4",
"xo": "^0.22.0"
},
"keywords": [
"squat",
"squatter",
"squatted",
"squatting",
"hog",
"hogged",
"hogging",
"unused",
"useless",
"zombie",
"fake",
"npm",
"registry",
"package",
"name",
"namespace"
],
"xo": {
"extend": "tidy"
}
}