forked from assuncaocharles/react-indexed-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 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
{
"name": "react-indexed-db",
"version": "1.0.12",
"description": "React wrapper to IndexedDB database.",
"main": "lib/main.js",
"types": "lib/index.d.ts",
"files": [
"lib/*",
"src/*"
],
"scripts": {
"test": "karma start ./karma.conf.js",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assuncaocharles/react-indexed-db.git"
},
"author": "Charles Assunção",
"license": "ISC",
"bugs": {
"url": "https://github.com/assuncaocharles/react-indexed-db/issues"
},
"keywords": [
"indexed",
"db",
"indexeddb",
"websql",
"sql",
"indexed-db",
"database",
"react",
"reactjs",
"database",
"storage"
],
"homepage": "https://github.com/assuncaocharles/react-indexed-db",
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "^3.1.1"
},
"devDependencies": {
"@types/react": "^16.9.1",
"@types/webpack": "^4.32.1",
"awesome-typescript-loader": "^5.2.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.0.4",
"tslint": "~5.9.1",
"typedoc": "^0.15.0",
"typescript": "^3.1.6",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6"
}
}