|
1 | 1 | {
|
2 | 2 | "name": "dexie-observable",
|
3 | 3 | "version": "4.0.0-beta.13",
|
| 4 | + "packageManager": "^[email protected]", |
4 | 5 | "description": "Addon to Dexie that makes it possible to observe database changes no matter if they occur on other db instance or other window.",
|
5 | 6 | "main": "dist/dexie-observable.js",
|
6 | 7 | "module": "dist/dexie-observable.es.js",
|
|
36 | 37 | "scripts": {
|
37 | 38 | "build": "just-build",
|
38 | 39 | "watch": "just-build --watch",
|
39 |
| - "test": "npm run build && npm run test:typings && npm run test:unit && npm run test:integration", |
| 40 | + "test": "pnpm run build && pnpm run test:typings && pnpm run test:unit && pnpm run test:integration", |
40 | 41 | "test:unit": "karma start test/unit/karma.conf.js --single-run",
|
41 | 42 | "test:integration": "karma start test/integration/karma.conf.js --single-run",
|
42 | 43 | "test:typings": "just-build test-typings",
|
|
69 | 70 | ],
|
70 | 71 | "test": [
|
71 | 72 | "# Build the unit tests (integration tests need no build)",
|
72 |
| - "tsc --allowJs --moduleResolution node --lib es2015,dom -t es5 -m es2015 --outDir tools/tmp/es5/test --rootDir ../.. --sourceMap test/unit/unit-tests-all.js [--watch 'Compilation complete.']", |
73 |
| - "rollup -c tools/build-configs/rollup.tests.config.js", |
74 |
| - "eslint test/unit --cache --ignore-pattern bundle.js" |
| 73 | + "tsc --allowJs --moduleResolution node --lib es2018,dom -t es5 -m es2015 --outDir tools/tmp/es5/test --rootDir ../.. --sourceMap test/unit/unit-tests-all.js [--watch 'Compilation complete.']", |
| 74 | + "rollup -c tools/build-configs/rollup.tests.config.js" |
75 | 75 | ],
|
76 | 76 | "test-typings": [
|
77 | 77 | "tsc -p test/typings/"
|
78 | 78 | ]
|
79 | 79 | },
|
80 | 80 | "homepage": "https://dexie.org",
|
81 | 81 | "peerDependencies": {
|
82 |
| - "dexie": "^3.0.2 || ^4.0.0-alpha.1" |
| 82 | + "dexie": "workspace:^3.0.2 || ^4.0.0-alpha.1" |
83 | 83 | },
|
84 | 84 | "devDependencies": {
|
85 |
| - "dexie": "^3.0.2 || ^4.0.0-alpha.1", |
| 85 | + "@types/node": "^18.7.14", |
| 86 | + "dexie": "workspace:^3.0.2 || ^4.0.0-alpha.1", |
86 | 87 | "eslint": "^7.27.0",
|
87 |
| - "just-build": "^0.9.19", |
| 88 | + "just-build": "^0.9.24", |
88 | 89 | "qunit": "^2.9.2",
|
89 | 90 | "uglify-js": "^3.5.6"
|
90 | 91 | }
|
|
0 commit comments