-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "read-genotype",
"version": "0.1.0",
"description": "Genotype data reader",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"types": "dist/cjs/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig-build.json && tsc -p tsconfig-build-es6.json",
"build:clean": "rimraf dist && npm run build",
"docs": "typedoc --tsconfig tsconfig-build.json",
"lint": "npx eslint src/ tests/ --ext .ts --fix",
"test": "mocha -r ts-node/register tests/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arbre-app/read-genotype.git"
},
"keywords": [
"genotype",
"dna"
],
"author": "Florian Cassayre",
"license": "MIT",
"sideEffects": false,
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^9.1.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typedoc": "^0.22.5",
"typescript": "^4.3.5"
}
}