This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rx-storage-indexeddb",
"version": "1.0.3",
"description": "",
"main": "./dist/es/index.js",
"jsnext:main": "./dist/es/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"clear": "rimraf -rf dist/ && rimraf .transpile_state.json",
"build:es": "rimraf -rf dist/es && cross-env NODE_ENV=es5 babel src --out-dir dist/es --source-maps --extensions \".ts,.js\"",
"build:types": "rimraf -rf ./dist/types && tsc --project ./config/tsconfig.types.json && npx cpy-cli ./src/types ./dist/types/types",
"build": "npm run clear && concurrently \"npm run build:es\" \"npm run build:types\""
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"rxdb": "^11.3.0",
"rxjs": "^7.4.0"
},
"dependencies": {
"@babel/runtime": "7.15.4",
"idb": "^7.0.0",
"pouchdb-extend": "^0.1.2",
"randomstring": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.15.6",
"@babel/plugin-transform-member-expression-literals": "7.14.5",
"@babel/plugin-transform-modules-commonjs": "7.15.4",
"@babel/plugin-transform-property-literals": "7.14.5",
"@babel/plugin-transform-runtime": "7.15.8",
"@babel/plugin-transform-spread": "7.15.8",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "7.15.0",
"@babel/types": "7.15.6",
"@types/async-lock": "^1.1.3",
"@types/core-js": "2.5.5",
"@types/jest": "^27.0.3",
"@types/randomstring": "^1.1.8",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"babel-plugin-transform-class-properties": "6.24.1",
"browserify": "17.0.0",
"concurrently": "6.2.1",
"cpy-cli": "^3.1.1",
"cross-env": "7.0.3",
"event-reduce-js": "^2.0.3",
"jest": "^27.4.3",
"pouchdb-selector-core": "^7.2.2",
"rimraf": "3.0.2",
"rxdb": "^11.3.0",
"rxjs": "^7.4.0",
"terser": "5.9.0",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
}
}