-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
74
75
76
{
"name": "patroller",
"version": "1.1.0",
"author": "Shivam Dhruva",
"description": "A CLI tool for removing unused dependencies, sorting the dependencies, locking the dependencies, and keeping a watch on the licenses.",
"bin": {
"patroller": "./bin/run"
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"semi": false
},
"bugs": "https://github.com/shiva-hack/patroller/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@types/inquirer": "^6.5.0",
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"depcheck": "^0.9.2",
"inquirer": "^7.2.0",
"json-keys-sort": "^2.0.0",
"license-checker": "^25.0.1",
"node-emoji": "^1.10.0",
"shelljs": "^0.8.4",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/chalk": "^2.2.0",
"@types/cli-table": "^0.3.0",
"@types/depcheck": "^0.9.1",
"@types/license-checker": "^25.0.0",
"@types/node": "^10",
"@types/node-emoji": "^1.8.1",
"@types/shelljs": "^0.8.8",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^6.11.0",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/shiva-hack/patroller",
"keywords": [
"cli",
"packages",
"dependencies",
"unused",
"sort",
"lock",
"watch",
"license"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "patroller"
},
"repository": "shiva-hack/patroller",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}