-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.53 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
70
71
72
73
{
"name": "all-package-names",
"version": "2.0.896",
"description": "Get all NPM package names",
"license": "MIT",
"author": {
"name": "Connor White",
"email": "[email protected]",
"url": "https://connorwhite.org"
},
"homepage": "https://connorwhite.org/github/all-package-names.git",
"repository": {
"type": "git",
"url": "git+https://github.com/bconnorwhite/all-package-names.git"
},
"keywords": [
"get",
"all",
"the",
"npm",
"package",
"packges",
"name",
"names",
"typo",
"squatting",
"api"
],
"files": [
"build",
"data"
],
"main": "./build/index.js",
"bin": {
"all-package-names": "./build/bin/index.js"
},
"scripts": {
"build": "bob build",
"commit": "bob commit",
"lint": "bob lint",
"release": "bob publish",
"start": "node ./build/bin/index.js",
"sync": "yarn start sync",
"test": "bob test"
},
"dependencies": {
"commander-version": "^1.1.0",
"p-lock": "^2.0.0",
"parse-json-object": "^2.0.1",
"progress": "^2.0.3",
"types-json": "^1.2.2"
},
"devDependencies": {
"@bconnorwhite/bob": "^2.9.5",
"@types/mock-fs": "^4.13.1",
"@types/node": "^14.14.37",
"@types/progress": "^2.0.3",
"jest": "^29.5.0",
"mock-fs": "^5.0.0",
"ts-jest": "^29.1.0"
},
"eslintConfig": {
"extends": "eslint-config-bob"
},
"husky": {
"hooks": {
"commit-msg": "bob lint commit"
}
},
"npmpackagejsonlint": {
"extends": "npm-package-json-lint-config-bob"
}
}