-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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": "smart-sqlite3-filter",
"version": "0.4.0",
"description": "Query a sqlite3 database using better-sqlite3 in a way like 'firstName:luc'.",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"files": [
"src",
"lib",
"lib-esm"
],
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf lib lib-esm",
"eslint": "eslint src --cache",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run tsc",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
"test-only": "vitest --coverage",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/smart-sqlite3-filter.git"
},
"bugs": {
"url": "https://github.com/cheminfo/smart-sqlite3-filter/issues"
},
"homepage": "https://github.com/cheminfo/smart-sqlite3-filter#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/better-sqlite3": "^7.6.12",
"@vitest/coverage-v8": "^2.1.8",
"better-sqlite3": "^11.7.2",
"eslint": "^9.17.0",
"eslint-config-cheminfo-typescript": "^17.0.0",
"fifo-logger": "^1.0.0",
"jest-matcher-deep-close-to": "^3.0.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"cheminfo-types": "^1.8.1"
}
}