-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "indexed-db-stream",
"version": "1.0.0",
"description": "Use node.js streams to read from / write to an IndexedDB.",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test",
"typescript": "ts"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"browserify": "^16.1.0",
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^2.0.9",
"mocha": "^5.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.10.0",
"typescript": "^2.7.2",
"webpack": "^3.11.0"
},
"scripts": {
"test": "tsc; istanbul instrument lib -o test-tmp && karma start karma.conf.js && rm -Rf test-tmp",
"browser-test": "tsc; cp -R lib test-tmp && browserify test/index.js -o browser-test/bundle.js && rm -Rf test-tmp",
"doc": "typedoc --out ./typedoc/ --exclude ts/tile-layer.directive.spec.ts --mode file ts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atd-schubert/indexed-db-stream.git"
},
"keywords": [
"indexed-db",
"stream",
"browser",
"storage",
"store"
],
"author": "Arne Schubert <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/atd-schubert/indexed-db-stream/issues"
},
"homepage": "https://github.com/atd-schubert/indexed-db-stream#readme"
}