-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "rest-on-couch-client",
"version": "5.3.1",
"description": "A nodejs / browser client for rest-on-couch backend",
"main": "./lib/index.js",
"module": "./lib-es6/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"lib-es6"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-es6",
"eslint": "eslint src --ext ts",
"eslint-fix": "npm run eslint -- --fix",
"prepare": "npm run tsc",
"test": "npm run test-coverage && npm run eslint && npm run check-types",
"test-only": "jest --runInBand",
"test-coverage": "jest --coverage --runInBand",
"test-watch": "jest --runInBand --watch",
"tsc": "npm run clean && npm run tsc-es5 && npm run tsc-es6",
"tsc-es5": "tsc",
"tsc-es6": "tsc --project tsconfig.es6.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",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^18.17.1",
"@zakodium/eslint-config": "^5.1.1",
"eslint": "^8.13.0",
"eslint-config-cheminfo-typescript": "^10.4.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.26.1",
"immer": "^9.0.12"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"volta": {
"node": "18.17.1"
}
}