-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
68
69
70
{
"name": "pouchorm",
"version": "4.1.4",
"description": "PouchDB ORM for Typescript. Work with Multiple Pouch databases or multiple collections in a single database. Supports all platforms PouchDB supports.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"pouchdb",
"orm",
"odm",
"Typescript",
"electron",
"web",
"react-native"
],
"repository": {
"type": "github",
"url": "https://github.com/iyobo/pouchorm"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"prepublish": "tsc && npm run lint && npm test",
"dev": "tsc -w",
"lint": "eslint --fix",
"publish:patch": "npm run prepublish && npm version patch && npm publish",
"publish:minor": "npm run prepublish && npm version minor && npm publish",
"publish:major": "npm run prepublish && npm version major && npm publish"
},
"files": [
"dist/**/*"
],
"author": "Iyobo Eki",
"license": "MIT",
"dependencies": {
"async-retry": "^1.3.1",
"pouchdb-adapter-memory": "^9.0.0",
"pouchdb": "^9.0.0",
"pouchdb-find": "8.0.1",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.24",
"@types/pouchdb": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-standard": "5.0.0",
"jest": "^29.7.0",
"prettier": "2.3.1",
"supertest": "^4.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"class-validator": "^0.14.1"
}
}