-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.19 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@gmod/gff",
"version": "2.1.0",
"description": "read and write GFF3 data as streams",
"license": "MIT",
"repository": "GMOD/gff-js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./dist/index.js"
}
},
"author": {
"name": "Robert Buels",
"email": "rbuels@gmail.com",
"url": "https://github.com/rbuels"
},
"maintainers": [
{
"name": "Garrett Stevens",
"email": "stevens.garrett.j@gmail.com",
"url": "https://github.com/garrettjstevens"
}
],
"engines": {
"node": ">=18"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist esm",
"coverage": "npm-run-all \"test -- --coverage\"",
"lint": "eslint src test",
"docs": "npm-run-all docs:*",
"docs:api": "documentation readme src/api.ts --section=API --shallow",
"docs:util": "documentation readme src/util.ts --section=util --shallow",
"docs:format": "prettier --write README.md",
"prebuild": "npm-run-all clean",
"build:esm": "tsc --project tsconfig.build.json --outDir esm",
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --moduleResolution node --outDir dist",
"build": "npm-run-all --parallel build:*",
"prepublishOnly": "npm-run-all test build",
"postversion": "git push --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"gff3",
"gff",
"genomics"
],
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"documentation": "^14.0.1",
"eslint": "^9.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unicorn": "^54.0.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tmp-promise": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^5.5.2"
}
}