gff-nostream 1.3.7 → 1.3.9
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/dist/package.json +1 -0
- package/package.json +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"type": "commonjs"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gff-nostream",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.9",
|
|
4
4
|
"description": "utilities to read GFF3 data",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "cmdcolin/gff-nostream",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"test": "vitest",
|
|
21
21
|
"clean": "rimraf dist esm",
|
|
22
22
|
"lint": "eslint src test",
|
|
23
|
-
"docs": "documentation readme src/api.ts --section=API --shallow &&
|
|
23
|
+
"docs": "documentation readme src/api.ts --section=API --shallow && yarn format",
|
|
24
24
|
"format": "prettier --write .",
|
|
25
|
-
"prebuild": "
|
|
25
|
+
"prebuild": "yarn clean",
|
|
26
26
|
"build:esm": "tsc --target es2018 --outDir esm",
|
|
27
27
|
"build:es5": "tsc --target es2015 --module commonjs --outDir dist",
|
|
28
28
|
"postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
|
|
29
|
-
"build": "
|
|
30
|
-
"prepublishOnly": "
|
|
29
|
+
"build": "yarn build:es5 && yarn build:esm",
|
|
30
|
+
"prepublishOnly": "yarn test --run && yarn build",
|
|
31
31
|
"postversion": "git push --follow-tags"
|
|
32
32
|
},
|
|
33
33
|
"keywords": [
|