-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.38 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": "genobankio-js",
"version": "1.0.7",
"description": "Genobank typescript/javascript lib with.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"test": "tsc && nyc hayspec test",
"cli": "node -r ts-node/register src/cli/main.ts",
"pkg": "tsc && pkg ./dist/cli/main.js --out-path ./compiled",
"webpack": "tsc && npx webpack",
"eslint": "eslint . --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Genobank/genobankio-js.git"
},
"author": "GenoBank.io",
"hayspec": {
"require": [
"ts-node/register"
],
"match": [
"./src/**/*.test.*"
]
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Genobank/genobankio-js/issues"
},
"homepage": "https://github.com/Genobank/genobankio-js#readme",
"dependencies": {
"axios": "^0.21.1",
"commander": "^7.2.0",
"ethers": "^5.0.32"
},
"devDependencies": {
"@hayspec/cli": "^0.10.2",
"@hayspec/spec": "^0.10.2",
"@types/commander": "^2.12.2",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"nyc": "^15.1.0",
"pkg": "^4.5.1",
"ts-loader": "^8.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.9",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}