-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "realm-orm",
"version": "3.1.0",
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.js"
},
"./Model": {
"import": "./Model.js",
"require": "./dist/Model.js"
}
},
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/artis-auxilium/realm-orm.git"
},
"bugs": {
"url": "https://github.com/artis-auxilium/realm-orm/issues"
},
"typings": "./index.d.ts",
"peerDependencies": {
"realm": "^11.10.1"
},
"scripts": {
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/preset-env": "~7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "~6.0.2",
"@rollup/plugin-commonjs": "~23.0.2",
"@rollup/plugin-node-resolve": "~15.0.1",
"@types/jest": "^29.5.0",
"babel-jest": "^27.1.0",
"core-js": "3",
"corejs": "^1.0.0",
"jest": "^29.5.0",
"realm": "^11.10.1",
"rollup": "~2.79.1",
"rollup-plugin-terser": "~7.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
}
}