-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.88 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": "bxd",
"version": "1.0.0-rc.10",
"description": "Object relational mapping for IndexedDB",
"main": "dist/bxd.esm.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"build": "npm run lint && rollup --config build/rollup.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leegeunhyeok/bxd.git"
},
"keywords": [
"idb",
"indexeddb",
"orm",
"database"
],
"author": "Geunhyeok LEE <dev.ghlee@gmail.com> (https://github.com/leegeunhyeok)",
"license": "MIT",
"bugs": {
"url": "https://github.com/leegeunhyeok/bxd/issues"
},
"homepage": "https://github.com/leegeunhyeok/bxd#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@rollup/plugin-typescript": "^8.0.0",
"@types/faker": "^5.5.6",
"@types/jest": "^26.0.19",
"@types/rosie": "^0.0.39",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-jest": "^26.6.3",
"babel-plugin-external-helpers": "^6.22.0",
"codecov": "^3.8.1",
"core-js-bundle": "^3.9.1",
"eslint": "^7.15.0",
"fake-indexeddb": "^3.1.2",
"faker": "^5.5.3",
"jest": "^26.6.3",
"rollup": "^2.34.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rosie": "^2.1.0",
"ts-jest": "^26.4.4",
"tslib": "^2.2.0",
"typescript": "^4.1.5"
}
}