-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 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
{
"name": "packages-outdated",
"version": "1.2.1",
"description": "Check that all dependencies are up to date 🕵 🕵",
"main": "lib/index.js",
"bin": "lib/index.js",
"author": "Tostée Lucas <lucas.tostee@gmail.com> (https://www.lucas-tostee.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/luctst/packages-outdated"
},
"bugs": {
"url": "https://github.com/luctst/packages-outdated/issues"
},
"homepage": "https://github.com/luctst/packages-outdated",
"files": [
"lib/"
],
"engines": {
"node": ">= 10.0.0"
},
"eslintIgnore": [
"lib/build/"
],
"ava": {
"cache": true
},
"keywords": [
"cli",
"cli-tool",
"nodejs",
"packages",
"packages-outdated",
"npm-packages",
"check-packages",
"es6"
],
"scripts": {
"test": "ava --verbose ./test/*.js",
"test:watch": "ava --watch --verbose --fail-fast ./test/*.js",
"lint": "npx eslint --cache './lib/**/*.js'",
"lint:watch": "esw -w --clear --color --cache './lib/**/*.js'",
"lint:fix": "npx eslint --fix './lib/**/*.js'",
"style": "prettier -c './lib/**/*.js'",
"style:fix": "prettier --c --write './lib/**/*.js'"
},
"devDependencies": {
"ava": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-watch": "^6.0.1",
"prettier": "1.18.2"
},
"dependencies": {
"chalk": "2.4.2",
"latest-version": "^5.1.0",
"meow": "^5.0.0",
"ora": "^3.4.0",
"text-table": "^0.2.0"
}
}