@microlink/google 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -54
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microlink/google",
|
|
3
3
|
"description": "Structured Google data from 10 verticals through Microlink API",
|
|
4
|
-
"homepage": "https://github.com/microlinkhq/
|
|
5
|
-
"version": "1.0.
|
|
4
|
+
"homepage": "https://github.com/microlinkhq/microlink",
|
|
5
|
+
"version": "1.0.6",
|
|
6
6
|
"exports": {
|
|
7
7
|
"types": "./src/index.d.ts",
|
|
8
8
|
"require": "./src/index.js",
|
|
@@ -21,46 +21,34 @@
|
|
|
21
21
|
}
|
|
22
22
|
],
|
|
23
23
|
"repository": {
|
|
24
|
+
"directory": "packages/search",
|
|
24
25
|
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/microlinkhq/
|
|
26
|
+
"url": "git+https://github.com/microlinkhq/microlink.git"
|
|
26
27
|
},
|
|
27
28
|
"bugs": {
|
|
28
|
-
"url": "https://github.com/microlinkhq/
|
|
29
|
+
"url": "https://github.com/microlinkhq/microlink/issues"
|
|
29
30
|
},
|
|
30
31
|
"keywords": [
|
|
31
32
|
"google",
|
|
32
33
|
"integration",
|
|
33
34
|
"microlink",
|
|
34
35
|
"search",
|
|
35
|
-
"search",
|
|
36
36
|
"serp"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@microlink/mql": "
|
|
39
|
+
"@microlink/mql": "0.18.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@commitlint/cli": "latest",
|
|
43
|
-
"@commitlint/config-conventional": "latest",
|
|
44
42
|
"ava": "latest",
|
|
45
43
|
"browser-sync": "latest",
|
|
46
|
-
"c8": "latest",
|
|
47
|
-
"ci-publish": "latest",
|
|
48
|
-
"conventional-changelog-cli": "latest",
|
|
49
44
|
"cssnano": "latest",
|
|
50
45
|
"cssnano-preset-advanced": "latest",
|
|
51
|
-
"finepack": "latest",
|
|
52
|
-
"git-authors-cli": "latest",
|
|
53
|
-
"github-generate-release": "latest",
|
|
54
46
|
"gulp": "latest",
|
|
55
47
|
"gulp-concat": "latest",
|
|
56
48
|
"gulp-postcss": "latest",
|
|
57
49
|
"gulp-uglify": "latest",
|
|
58
|
-
"nano-staged": "latest",
|
|
59
50
|
"postcss-focus": "latest",
|
|
60
51
|
"proxyquire": "latest",
|
|
61
|
-
"simple-git-hooks": "latest",
|
|
62
|
-
"standard": "latest",
|
|
63
|
-
"standard-version": "latest",
|
|
64
52
|
"tinyrun": "latest",
|
|
65
53
|
"tinyspawn": "latest"
|
|
66
54
|
},
|
|
@@ -72,46 +60,11 @@
|
|
|
72
60
|
],
|
|
73
61
|
"scripts": {
|
|
74
62
|
"build": "gulp build",
|
|
75
|
-
"clean": "rm -rf node_modules",
|
|
76
|
-
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
|
|
77
|
-
"coverage": "c8 report --reporter=text-lcov > coverage/lcov.info",
|
|
78
63
|
"dev": "tinyrun \"pnpm dev:src\" \"pnpm dev:server\"",
|
|
79
64
|
"dev:server": "browser-sync start --server docs --files \"docs/index.html, docs/README.md, docs/static/**/*.(css|js)\"",
|
|
80
65
|
"dev:src": "gulp",
|
|
81
|
-
"lint": "standard",
|
|
82
|
-
"postrelease": "pnpm release:tags && pnpm release:github && (ci-publish || pnpm publish --access=public)",
|
|
83
|
-
"pretest": "pnpm lint",
|
|
84
|
-
"release": "pnpm release:version && pnpm release:changelog && pnpm release:commit && pnpm release:tag",
|
|
85
|
-
"release:changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s",
|
|
86
|
-
"release:commit": "git add package.json CHANGELOG.md && git commit -m \"chore(release): $(node -p \"require('./package.json').version\")\"",
|
|
87
|
-
"release:github": "github-generate-release",
|
|
88
|
-
"release:tag": "git tag -a v$(node -p \"require('./package.json').version\") -m \"v$(node -p \"require('./package.json').version\")\"",
|
|
89
|
-
"release:tags": "git push origin HEAD:master --follow-tags",
|
|
90
|
-
"release:version": "standard-version --skip.changelog --skip.commit --skip.tag",
|
|
91
66
|
"test": "exit 0"
|
|
92
67
|
},
|
|
93
68
|
"license": "MIT",
|
|
94
|
-
"
|
|
95
|
-
"extends": [
|
|
96
|
-
"@commitlint/config-conventional"
|
|
97
|
-
],
|
|
98
|
-
"rules": {
|
|
99
|
-
"body-max-line-length": [
|
|
100
|
-
0
|
|
101
|
-
]
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"nano-staged": {
|
|
105
|
-
"*.js": [
|
|
106
|
-
"npx @kikobeats/prettier-standard",
|
|
107
|
-
"standard --fix"
|
|
108
|
-
],
|
|
109
|
-
"package.json": [
|
|
110
|
-
"finepack"
|
|
111
|
-
]
|
|
112
|
-
},
|
|
113
|
-
"simple-git-hooks": {
|
|
114
|
-
"commit-msg": "npx commitlint --edit",
|
|
115
|
-
"pre-commit": "npx nano-staged"
|
|
116
|
-
}
|
|
69
|
+
"gitHead": "13e0818cc80bca85a19f16837095bd7d6b31f76a"
|
|
117
70
|
}
|