-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "faims3-datamodel",
"version": "1.1.6",
"description": "Database access layer for FAIMS3",
"main": "./build/src/index.js",
"exports": {
".": "./build/src/index.js"
},
"types": "build/src/index.d.ts",
"files": [
"build/"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.json",
"test": "NODE_ENV=test jest",
"test:watch": "NODE_ENV=test jest --watchAll=true",
"coverage": "NODE_ENV=test jest --coverage --watchAll=false"
},
"author": "",
"license": "Apache",
"repository": {
"type": "git",
"url": "https://github.com/FAIMS/faims3-data-model"
},
"peerDependencies": {
"pouchdb": "^7.3.0"
},
"dependencies": {
"@demvsystems/yup-ast": "^1.2.2",
"@types/pouchdb": "^6.4.0",
"fast-json-stable-stringify": "^2.1.0",
"lodash": "^4.17.21",
"uuid": "^9.0.0"
},
"devDependencies": {
"@fast-check/jest": "^1.6.0",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.0",
"@types/uuid": "^9.0.0",
"fast-check": "^3.6.3",
"gts": "^3.1.1",
"jest": "^29.4.3",
"pouchdb-adapter-memory": "^8.0.1",
"pouchdb-find": "^8.0.1",
"ts-jest": "^29.0.5",
"typescript": "^5.3.2"
}
}