-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.97 KB
/
package.json
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
{
"name": "@gmod/gff",
"version": "1.3.0",
"description": "read and write GFF3 data as streams",
"license": "MIT",
"repository": "GMOD/gff-js",
"main": "dist/index.js",
"module": "esm/index.js",
"browser": {
"stream": "stream-browserify"
},
"author": {
"name": "Robert Buels",
"email": "[email protected]",
"url": "https://github.com/rbuels"
},
"bin": {
"gff-to-json": "dist/gff-to-json.js"
},
"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 --target es2018 --outDir esm",
"build:es5": "tsc --target es2015 --module commonjs --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"
],
"dependencies": {
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^20.14.7",
"@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",
"tslib": "^2.4.1",
"typescript": "^5.5.2"
}
}