This repository has been archived by the owner on Jun 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "hubmap-api-js-client",
"version": "1.0.0",
"description": "Javascript client for the Cells API; See also: cells-api-py-client.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint -c .eslintrc.yml --ext .js,.ts src/",
"lint:fix": "eslint -c .eslintrc.yml --ext .js,.ts --fix src/"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"prettier --write",
"eslint -c .eslintrc.yml"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hubmapconsortium/cells-api-js-client.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hubmapconsortium/cells-api-js-client/issues"
},
"homepage": "https://github.com/hubmapconsortium/cells-api-js-client#readme"
}