This repository was archived by the owner on Aug 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.37 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.37 KB
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
{
"name": "badgets",
"version": "0.0.0",
"description": "npm audit and outdated output to badges. No other online serviecs involved",
"homepage": "",
"license": "Apache-2.0",
"author": {
"name": "Reda Bendiar",
"email": "reda.bendiar@gmail.com",
"url": "https://github.com/redben/badgets"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"badges",
"outdated",
"audit"
],
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"husky": "^1.2.0",
"jest": "^23.5.0",
"lec": "^1.0.1",
"lint-staged": "^8.1.0"
},
"engines": {
"node": ">=6.0.0",
"npm": "^6.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"jest": true,
"node": true,
"es6": true
},
"rules": {
"no-console": "off"
}
},
"scripts": {
"pretest": "eslint .; npm run clean",
"test": "jest --coverage",
"prepare": "lec lib/cli.js -c LF",
"test:clean": "rm -rf tmp/* rm -rf coverage/* && rm -rf .nyc_output",
"clean": "npm run test:clean; mdir -p tmp"
},
"repository": "github.com:redben/badgets.git",
"jest": {
"testEnvironment": "node"
},
"bin": "lib/cli.js",
"dependencies": {
"badgen": "^2.5.0",
"yargs": "^12.0.5"
}
}