@microlink/mql 0.10.36-0 → 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.
- package/package.json +6 -10
package/package.json
CHANGED
|
@@ -2,16 +2,9 @@
|
|
|
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.36-
|
|
5
|
+
"version": "0.10.36-1",
|
|
6
6
|
"browser": "src/lightweight.js",
|
|
7
7
|
"main": "src/node.js",
|
|
8
|
-
"types": "index.d.ts",
|
|
9
|
-
"umd:main": "dist/mql.js",
|
|
10
|
-
"unpkg": "dist/mql.js",
|
|
11
|
-
"exports": {
|
|
12
|
-
"import": "./dist/mql.js",
|
|
13
|
-
"require": "./src/node.js"
|
|
14
|
-
},
|
|
15
8
|
"author": {
|
|
16
9
|
"email": "josefrancisco.verdu@gmail.com",
|
|
17
10
|
"name": "Kiko Beats",
|
|
@@ -96,9 +89,9 @@
|
|
|
96
89
|
"license": "MIT",
|
|
97
90
|
"ava": {
|
|
98
91
|
"files": [
|
|
99
|
-
"test/**/*",
|
|
100
92
|
"!test/browser-globals.js",
|
|
101
|
-
"!test/clients.js"
|
|
93
|
+
"!test/clients.js",
|
|
94
|
+
"test/**/*"
|
|
102
95
|
],
|
|
103
96
|
"require": [
|
|
104
97
|
"esm"
|
|
@@ -140,6 +133,9 @@
|
|
|
140
133
|
"tsd": {
|
|
141
134
|
"directory": "test"
|
|
142
135
|
},
|
|
136
|
+
"types": "index.d.ts",
|
|
137
|
+
"umd:main": "dist/mql.js",
|
|
138
|
+
"unpkg": "dist/mql.js",
|
|
143
139
|
"scripts": {
|
|
144
140
|
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
145
141
|
"build:kys": "[ -f src/ky.js ] || rollup node_modules/ky/distribution/index.js --format=umd --name=ky --exports=named --file=src/ky.js",
|