forked from cheminfo-js/genbank-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "genbank-parser",
"version": "1.2.4",
"description": "parse genbank",
"main": "src/index.js",
"scripts": {
"eslint": "eslint src",
"eslint-fix": "eslint src --fix",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"types": "genbank-parser.d.ts",
"keywords": [
"genbank",
"parser"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo-js/genbank-parser.git"
},
"bugs": {
"url": "https://github.com/cheminfo-js/genbank-parser/issues"
},
"homepage": "https://github.com/cheminfo-js/genbank-parser#readme",
"author": "Daniel Kostro <[email protected]>",
"license": "MIT",
"devDependencies": {
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.1.0",
"eslint-config-cheminfo": "^3.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}