-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
33 lines (33 loc) · 1000 Bytes
/
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
{
"name": "@subshell/data-repositories",
"version": "1.1.1-0",
"description": "This library allows you to use convenient repositories backed by Dexie and IndexedDB.",
"repository": "https://github.com/subshell/data-repositories",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --build src/tsconfig.lib.json",
"test": "jest",
"test:ci": "jest --reporters=\"default\" --reporters=\"jest-junit\"",
"test:watch": "jest --watch",
"package": "npm run test && npm run build"
},
"keywords": [],
"author": "Team Weasel / subshell GmbH",
"license": "MIT",
"dependencies": {
"dexie": "3.2.2",
"dexie-observable": "3.0.0-beta.11",
"reflect-metadata": "0.1.13",
"rxjs": "^7.5.6"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"fake-indexeddb": "4.0.0",
"jest": "28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-junit": "^14.0.0",
"jest-marbles": "^3.0.3",
"ts-jest": "^28.0.8",
"typescript": "4.7.4"
}
}