-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 KB
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
57
58
59
60
61
62
63
{
"name": "rest-on-couch-client",
"version": "6.0.0",
"description": "A nodejs / browser client for rest-on-couch backend",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib",
"eslint": "eslint . --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepare": "npm run tsc",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"test": "npm run test-coverage && npm run eslint && npm run check-types",
"test-only": "vitest run",
"test-coverage": "vitest run --coverage",
"test-watch": "vitest",
"tsc": "npm run clean && tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/rest-on-couch-client.git"
},
"keywords": [],
"author": "Daniel Kostro",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/rest-on-couch-client/issues"
},
"homepage": "https://github.com/cheminfo/rest-on-couch-client#readme",
"devDependencies": {
"@types/node": "^22.19.7",
"@vitest/coverage-v8": "^4.0.18",
"@zakodium/tsconfig": "^1.0.2",
"eslint": "^9.39.2",
"eslint-config-zakodium": "^19.1.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"axios": "^1.13.3",
"immer": "^11.1.3"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"volta": {
"node": "22.22.0"
}
}