-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "google-advanced-search",
"version": "1.0.4",
"description": "A simple tool to google with easy advanced search settings.",
"main": "index.js",
"scripts": {
"test": "mocha test/",
"tidy": "npm install && npm run test && npx prettier . ./test/ ./lib/ && npx eslint ."
},
"author": "mayo <[email protected]> (https://github.com/mayumonj)",
"license": "MIT",
"bin": {
"advsearch": "./cli.js"
},
"type": "module",
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"mocha": "^10.1.0",
"prettier": "^2.7.1"
},
"dependencies": {
"commander": "^9.4.1",
"enquirer": "^2.3.6",
"inquirer": "^9.1.3",
"open": "^8.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayumonj/google-advanced-search.git"
},
"keywords": [
"google",
"search",
"advanced",
"cli"
]
}