This repository has been archived by the owner on Aug 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
{
"name": "fasta-to-object-parser",
"version": "1.4.15",
"description": "DNA parser of FASTA format",
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && ./node_modules/.bin/babel src --out-dir build --ignore tests/",
"create-project-symlink": "scripts/create-project-symlink.sh",
"lint": "eslint src",
"postinstall": "npm run create-project-symlink",
"prepublishOnly": "npm run build",
"test": "mocha -r @babel/register --recursive src/tests --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oprogramador/fasta-to-object-parser.git"
},
"keywords": [
"parser",
"dna",
"fa",
"fna",
"mfa",
"fasta"
],
"author": "oprogramador",
"license": "MIT",
"bugs": {
"url": "https://github.com/oprogramador/fasta-to-object-parser/issues"
},
"homepage": "https://github.com/oprogramador/fasta-to-object-parser#readme",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.23.0",
"eslint-config-airbnb-improved": "^5.0.0",
"mocha": "^8.3.2",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0"
},
"dependencies": {
"lodash": "^4.17.21",
"semantic-release": "19"
}
}