@ezs/basics 1.15.3 → 1.15.4

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/CHANGELOG.md +11 -0
  2. package/package.json +27 -32
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.15.4](https://github.com/Inist-CNRS/ezs/compare/@ezs/basics@1.15.3...@ezs/basics@1.15.4) (2022-01-31)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * npm dependencies ([36c7ebe](https://github.com/Inist-CNRS/ezs/commit/36c7ebea03e82e9d177f7480f587511360e3dace))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.15.3](https://github.com/Inist-CNRS/ezs/compare/@ezs/basics@1.15.2...@ezs/basics@1.15.3) (2022-01-31)
7
18
 
8
19
  **Note:** Version bump only for package @ezs/basics
package/package.json CHANGED
@@ -1,28 +1,14 @@
1
1
  {
2
2
  "name": "@ezs/basics",
3
- "version": "1.15.3",
4
3
  "description": "Basics statements for EZS",
5
- "directories": {
6
- "test": "test"
7
- },
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/Inist-CNRS/ezs.git"
11
- },
12
- "keywords": [
13
- "ezs"
14
- ],
4
+ "version": "1.15.4",
15
5
  "author": "Nicolas Thouvenin <nthouvenin@gmail.com>",
16
- "license": "MIT",
17
- "bugs": {
18
- "url": "https://github.com/Inist-CNRS/ezs/issues"
19
- },
20
- "homepage": "https://github.com/Inist-CNRS/ezs/tree/master/packages/basics#readme",
6
+ "bugs": "https://github.com/Inist-CNRS/ezs/issues",
21
7
  "dependencies": {
22
8
  "JSONStream": "1.3.5",
23
- "better-https-proxy-agent": "1.0.8",
9
+ "better-https-proxy-agent": "1.0.9",
24
10
  "csv-string": "3.2.0",
25
- "debug": "4.3.2",
11
+ "debug": "4.3.3",
26
12
  "fetch-with-proxy": "3.0.1",
27
13
  "flat": "5.0.2",
28
14
  "lodash.escaperegexp": "4.1.2",
@@ -31,33 +17,42 @@
31
17
  "lodash.mapvalues": "4.6.0",
32
18
  "lodash.set": "4.3.2",
33
19
  "lodash.zipobject": "4.1.3",
34
- "micromatch": "4.0.2",
20
+ "micromatch": "4.0.4",
35
21
  "node-abort-controller": "1.1.0",
36
22
  "parse-headers": "2.0.4",
37
23
  "stream-write": "1.0.1",
38
24
  "tmp-filepath": "2.0.0",
39
25
  "unzipper": "0.10.11",
40
- "xml-mapping": "1.7.1",
26
+ "xml-mapping": "1.7.2",
41
27
  "xml-splitter": "1.2.1",
42
28
  "yajson-stream": "1.3.3"
43
29
  },
30
+ "devDependencies": {
31
+ "pako": "2.0.4"
32
+ },
33
+ "directories": {
34
+ "test": "test"
35
+ },
36
+ "gitHead": "653a28a1e40b088ea62b1b00c055de51e264dee1",
37
+ "homepage": "https://github.com/Inist-CNRS/ezs/tree/master/packages/basics#readme",
38
+ "keywords": [
39
+ "ezs"
40
+ ],
41
+ "license": "MIT",
44
42
  "main": "./lib/index.js",
43
+ "peerDependencies": {
44
+ "@ezs/core": "1.27.2"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "repository": "Inist-CNRS/ezs.git",
45
50
  "scripts": {
51
+ "build": "babel --root-mode upward src --out-dir lib",
46
52
  "doc": "documentation readme src/* --sort-order=alpha --shallow --markdown-toc-max-depth=2 --readme-file=../../docs/plugin-basics.md --section=usage && cp ../../docs/plugin-basics.md ./README.md",
47
53
  "lint": "eslint --ext=.js ./test/*.js ./src/*.js",
48
- "build": "babel --root-mode upward src --out-dir lib",
49
54
  "prepublish": "npm run build",
50
55
  "pretest": "npm run build",
51
56
  "preversion": "npm run doc"
52
- },
53
- "publishConfig": {
54
- "access": "public"
55
- },
56
- "devDependencies": {
57
- "pako": "1.0.11"
58
- },
59
- "peerDependencies": {
60
- "@ezs/core": "1.27.0"
61
- },
62
- "gitHead": "2df397fbd92f852e7d7a1d434809d1b0367238c5"
57
+ }
63
58
  }