-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "indexeddb-orm",
"version": "3.2.1",
"main": "./dist/es2015/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build.browser.module": "./node_modules/.bin/tsc --build tsconfig.json",
"build.browser.all": "./node_modules/.bin/webpack --config=webpack.config.js --mode=production"
},
"author": "Max Gaurav [email protected]",
"description": "A promise based ORM wrapper for indexedDB",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-loader": "^8.0.6",
"ts-loader": "^6.0",
"tslint": "^5.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-toplevel-property-access": "^0.0.2",
"typescript": "^3.5",
"vrsource-tslint-rules": "^6.0.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"files": [
"/src",
"/dist"
],
"keywords": [
"indexeddb",
"indexed-db",
"browser",
"database"
],
"bugs": {
"url": "https://github.com/maxgaurav/indexeddb-orm/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/maxgaurav/indexeddb-orm.git"
},
"license": "MIT",
"dependencies": {}
}