-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.11 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rxdb-orion",
"description": "RxDB replication for Laravel Orion",
"readmeFilename": "README.md",
"version": "0.6.4",
"license": "MIT",
"keywords": [
"laravel",
"orion",
"replication",
"rxdb",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/serenysoft/rxdb-orion"
},
"bugs": {
"url": "https://github.com/serenysoft/rxdb-orion/issues"
},
"author": {
"name": "Leandro Guindani Gehlen",
"email": "[email protected]"
},
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "rimraf -rf dist/ && tsc --project tsconfig.dist.json",
"lint": "eslint \"src/**/*\" \"tests/**/*\"",
"release": "release-it --only-version",
"test": "cross-env NODE_ENV=testing jest --verbose --runInBand",
"test:ci": "cross-env NODE_ENV=testing jest --verbose --collect-coverage --runInBand --forceExit"
},
"engines": {
"node": ">= 16"
},
"dependencies": {
"lodash": "^4.17.21"
},
"peerDependencies": {
"rxdb": "^15.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@faker-js/faker": "^8.0.2",
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/node": "^16.11.7",
"@types/node-fetch": "^2.6.4",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"axios": "^1.5.0",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"fake-indexeddb": "^4.0.1",
"jest": "^29.6.1",
"nock": "^13.3.1",
"node-fetch": "^2.6.12",
"prettier": "^2.8.8",
"release-it": "^16.1.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}"
},
"hooks": {
"before:init": [
"npm run build"
]
}
}
}