jats-xml 1.0.13 → 1.0.14

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/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # jats-xml
2
2
 
3
3
  [![jats-xml on npm](https://img.shields.io/npm/v/jats-xml.svg)](https://www.npmjs.com/package/jats-xml)
4
- [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/curvenote/jats-xml/blob/main/LICENSE)
5
- [![CI](https://github.com/curvenote/jats-xml/workflows/CI/badge.svg)](https://github.com/curvenote/jats-xml/actions)
4
+ [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/continuous-foundation/jats-xml/blob/main/LICENSE)
5
+ [![CI](https://github.com/continuous-foundation/jats-xml/workflows/CI/badge.svg)](https://github.com/continuous-foundation/jats-xml/actions)
6
6
 
7
7
  Types and utilities for working with JATS XML documents in Node and Typescript.
8
8
 
@@ -10,9 +10,9 @@ Types and utilities for working with JATS XML documents in Node and Typescript.
10
10
 
11
11
  JATS is a NISO standard for Journal Article Tags Schema, which is a way to define the XML structure of a scientific article semantically. This includes the `front`-matter (authors, funding, title, abstract, etc.), the `body` of the article (sections, figures, equations, tables, etc.), and `back`-matter (references, footnotes, etc.). The JATS can also contain `sub-articles`.
12
12
 
13
- The standard documents are hosted by the NIH <https://jats.nlm.nih.gov/>. There are three flavours, this library currently uses in most cases the most precriptive tag set (for article authoring). Another helpful resource is <https://jats4r.org/>, which provides other examples and recomendations for JATS.
13
+ The standard documents are hosted by the NIH <https://jats.nlm.nih.gov/>. There are three flavours, this library currently uses in most cases the most prescriptive tag set (for article authoring). Another helpful resource is <https://jats4r.org/>, which provides other examples and recommendations for JATS.
14
14
 
15
- Note that most publishers do **not** provide the XML as a first class output - they should, it is an important part of open-science to have the content programatically accessible and interoperable. It is only [FAIR](https://www.go-fair.org/fair-principles/) 😉.
15
+ Note that most publishers do **not** provide the XML as a first class output - they should, it is an important part of open-science to have the content programmatically accessible and interoperable. It is only [FAIR](https://www.go-fair.org/fair-principles/) 😉.
16
16
 
17
17
  ## Working in Typescript
18
18
 
@@ -54,7 +54,7 @@ As of v1.0.0 this package is [ESM only](https://gist.github.com/sindresorhus/a39
54
54
 
55
55
  <p style="text-align: center; color: #aaa; padding-top: 50px">
56
56
  Made with love by
57
- <a href="https://curvenote.com" target="_blank" style="color: #aaa">
58
- <img src="https://cdn.curvenote.com/brand/logo-blue-icon.png" style="height: 1em" /> Curvenote
57
+ <a href="https://continuous.foundation" target="_blank" style="color: #aaa">
58
+ Continuous Science Foundation <img src="https://continuous.foundation/images/logo-small.svg" style="height: 1em" />
59
59
  </a>
60
60
  </p>
package/dist/version.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- declare const version = "1.0.13";
1
+ declare const version = "1.0.14";
2
2
  export default version;
3
3
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
- const version = '1.0.13';
1
+ const version = '1.0.14';
2
2
  export default version;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "jats-xml",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Types and utilities for working with JATS in Typescript",
5
- "author": "Rowan Cockett <rowan@curvenote.com>",
6
- "homepage": "https://github.com/curvenote/jats",
5
+ "author": "Rowan Cockett <rowan@continuous.foundation>",
6
+ "homepage": "https://github.com/continuous-foundation/jats",
7
7
  "license": "MIT",
8
8
  "sideEffects": false,
9
9
  "type": "module",
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "repository": {
24
24
  "type": "git",
25
- "url": "git+https://github.com/curvenote/jats.git"
25
+ "url": "git+https://github.com/continuous-foundation/jats.git"
26
26
  },
27
27
  "scripts": {
28
28
  "copy:version": "echo \"const version = '\"$npm_package_version\"';\nexport default version;\" > src/version.ts",
@@ -35,13 +35,13 @@
35
35
  "build": "npm-run-all -l clean copy:version -p build:esm"
36
36
  },
37
37
  "bugs": {
38
- "url": "https://github.com/curvenote/jats/issues"
38
+ "url": "https://github.com/continuous-foundation/jats/issues"
39
39
  },
40
40
  "dependencies": {
41
41
  "adm-zip": "^0.5.10",
42
42
  "doi-utils": "^2.0.3",
43
- "jats-tags": "^1.0.13",
44
- "jats-utils": "^1.0.13",
43
+ "jats-tags": "^1.0.14",
44
+ "jats-utils": "^1.0.14",
45
45
  "myst-cli-utils": "^2.0.11",
46
46
  "myst-common": "^1.7.5",
47
47
  "myst-frontmatter": "^1.7.5",