@microlink/mql 0.10.35 → 0.10.36-1

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.
Files changed (2) hide show
  1. package/LICENSE.md +0 -0
  2. package/package.json +24 -24
package/LICENSE.md CHANGED
File without changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@microlink/mql",
3
3
  "description": "Microlink Query Language. The official HTTP client to interact with Microlink API for Node.js, browsers & Deno.",
4
4
  "homepage": "https://nicedoc.io/microlinkhq/mql",
5
- "version": "0.10.35",
5
+ "version": "0.10.36-1",
6
6
  "browser": "src/lightweight.js",
7
7
  "main": "src/node.js",
8
8
  "author": {
@@ -86,31 +86,12 @@
86
86
  "lightweight",
87
87
  "src"
88
88
  ],
89
- "scripts": {
90
- "build": "rollup -c rollup.config.js --bundleConfigAsCjs",
91
- "build:kys": "[ -f src/ky.js ] || rollup node_modules/ky/distribution/index.js --format=umd --name=ky --exports=named --file=src/ky.js",
92
- "clean": "rm -rf node_modules",
93
- "clean:build": "rm -rf dist",
94
- "contributors": "(npx git-authors-cli && npx finepack --sort-ignore-object-at ava && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
95
- "dev": "npm run build -- -w",
96
- "lint": "standard && tsd",
97
- "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
98
- "prebuild": "npm run clean:build && npm run build:kys",
99
- "prerelease": "npm run update:check",
100
- "pretest": "npm run lint && npm run build",
101
- "release": "standard-version -a",
102
- "release:github": "conventional-github-releaser -p angular",
103
- "release:tags": "git push --follow-tags origin HEAD:master",
104
- "test": "c8 ava --verbose",
105
- "update": "ncu -u",
106
- "update:check": "ncu -- --error-level 2"
107
- },
108
89
  "license": "MIT",
109
90
  "ava": {
110
91
  "files": [
111
- "test/**/*",
112
92
  "!test/browser-globals.js",
113
- "!test/clients.js"
93
+ "!test/clients.js",
94
+ "test/**/*"
114
95
  ],
115
96
  "require": [
116
97
  "esm"
@@ -154,5 +135,24 @@
154
135
  },
155
136
  "types": "index.d.ts",
156
137
  "umd:main": "dist/mql.js",
157
- "unpkg": "dist/mql.js"
158
- }
138
+ "unpkg": "dist/mql.js",
139
+ "scripts": {
140
+ "build": "rollup -c rollup.config.js --bundleConfigAsCjs",
141
+ "build:kys": "[ -f src/ky.js ] || rollup node_modules/ky/distribution/index.js --format=umd --name=ky --exports=named --file=src/ky.js",
142
+ "clean": "rm -rf node_modules",
143
+ "clean:build": "rm -rf dist",
144
+ "contributors": "(npx git-authors-cli && npx finepack --sort-ignore-object-at ava && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
145
+ "dev": "npm run build -- -w",
146
+ "lint": "standard && tsd",
147
+ "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
148
+ "prebuild": "npm run clean:build && npm run build:kys",
149
+ "prerelease": "npm run update:check",
150
+ "pretest": "npm run lint && npm run build",
151
+ "release": "standard-version -a",
152
+ "release:github": "conventional-github-releaser -p angular",
153
+ "release:tags": "git push --follow-tags origin HEAD:master",
154
+ "test": "c8 ava --verbose",
155
+ "update": "ncu -u",
156
+ "update:check": "ncu -- --error-level 2"
157
+ }
158
+ }