forked from ivankristianto/google-search-console-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.44 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
77
78
79
{
"name": "gsc-cli",
"version": "0.1.0",
"description": "Google Search Console and Indexing API with CLI interface",
"bin": {
"gsc": "bin/gsc"
},
"main": "lib/cli.js",
"dependencies": {
"@babel/runtime": "^7.10.5",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"csv-writer": "^1.6.0",
"form-data": "^3.0.0",
"fs-extra": "^9.0.1",
"googleapis": "^59.0.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.19",
"node-fetch": "^2.6.0",
"ora": "^4.0.5",
"yargs": "^15.4.1"
},
"devDependencies": {
"@10up/eslint-config": "^2.0.0",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^22.2.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^2.5.1",
"istanbul": "^0.4.5",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"temp": "^0.9.1"
},
"scripts": {
"build": "npm run clean && cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"clean": "rimraf lib",
"cover": "cross-env BABEL_ENV=commonjs istanbul cover _mocha -- --require babel-core/register --recursive",
"lint": "eslint src test",
"postversion": "git push && git push --tags",
"pre-publish": "npm run clean && npm run lint && npm run test && npm run build",
"preversion": "npm run clean && npm run lint && npm test",
"test": "npm run build && cross-env BABEL_ENV=commonjs mocha --require @babel/register --recursive",
"version": "npm run build && git add -A .",
"watch": "npm run clean && cross-env BABEL_ENV=commonjs babel src --watch --out-dir lib"
},
"author": "Ivan Kristianto",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:ivankristianto/google-search-console-cli.git"
},
"keywords": [
"google-search",
"search-console",
"indexing-api",
"cli",
"yargs"
],
"bugs": {
"url": "https://github.com/ivankristianto/google-search-console-cli/issues"
}
}