-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (46 loc) · 953 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
47
{
"name": "everything-ok",
"version": "0.0.1",
"description": "An inspection tool for npm packages before publishing ",
"main": "cli.js",
"license": "MIT",
"repository": "alestor123/EVERYTHING-OK",
"funding": "https://alestor123.is-a.dev/donate",
"homepage": "https://github.com/alestor123/CREATE-PROFILE#readme",
"author": {
"name": "Alestor Aldous",
"email": "alestoraldous@gmail.com",
"url": "https://alestor123.github.io/"
},
"type": "module",
"bin": {
"everything-ok":"cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "standard && node test.js | tap-spec",
"example": "node run.js",
"lint": "standard . --fix"
},
"files": [
"cli.js",
"requirements.json"
],
"keywords": [
"cli-app",
"cli",
""
],
"devDependencies": {
"standard": "^16.0.3",
"tap": "^15.0.9",
"tap-spec": "^5.0.0"
},
"dependencies": {
"is-reachable": "^5.0.0",
"npm-name": "^5.0.0",
"semver": "^7.3.5"
}
}