-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "@gmod/gff",
"version": "1.1.2",
"description": "read and write GFF3 data as streams",
"license": "MIT",
"repository": "GMOD/gff-js",
"main": "dist/index.js",
"module": "esm/index.js",
"author": {
"name": "Robert Buels",
"email": "rbuels@gmail.com",
"url": "https://github.com/rbuels"
},
"bin": {
"gff-to-json": "dist/gff-to-json.js"
},
"files": [
"dist",
"esm"
],
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"coverage": "npm 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 clean",
"build": "tsc --target es2018 --outDir esm && tsc --target es5 --outDir dist",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push origin master --follow-tags"
},
"keywords": [
"bionode",
"biojs",
"gff3",
"gff",
"genomics"
],
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"documentation": "^13.2.5",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tmp-promise": "^3.0.2",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}