-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 KB
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
{
"name": "idb-query",
"version": "1.3.0",
"description": "Simple IDB query library with TypeScript support",
"main": "./build/orm.min.js",
"browser": "./build/orm.min.js",
"module": "./build/orm-esm.js",
"types": "./build/src/orm.d.ts",
"files": [
"build"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"build-dev": "cross-env NODE_ENV=development rollup -c rollup.config.js",
"build-prof": "cross-env NODE_ENV=development PROFILE=1 rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comonadd/idb-query.git"
},
"keywords": [
"idb",
"orm",
"database",
"js",
"browser",
"web"
],
"author": "Dmitry Guzeev <dmitri.guzeev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/comonadd/idb-query/issues"
},
"homepage": "https://github.com/comonadd/idb-query#readme",
"devDependencies": {
"idb": "^6.1.3",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jest": "^27.0.1",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/puppeteer": "^5.4.4",
"babel-jest": "^27.2.0",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"fake-indexeddb": "^3.1.3",
"jest": "^27.2.0",
"jest-puppeteer": "^5.0.4",
"rollup": "^2.56.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack-cli": "^4.8.0"
}
}