-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.02 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
{
"name": "indexed-db.es6",
"version": "1.0.0",
"description": "Flexible wrapper of IndexedDB APIs utilizing the features provided by ES6.",
"main": "es2015/DBFactory.js",
"module": "es2015/DBFactory.js",
"type": "module",
"scripts": {
"test": "karma start test/production.conf.cjs --single-run",
"test:dev": "CHROME_BIN=chromium karma start test/dev.conf.cjs"
},
"repository": {
"type": "git",
"url": "https://github.com/jurca/indexed-db.es6.git"
},
"keywords": [
"indexeddb",
"es6",
"es2015",
"promise",
"db",
"html5"
],
"author": "Martin Jurča",
"license": "ISC",
"bugs": {
"url": "https://github.com/jurca/indexed-db.es6/issues"
},
"devDependencies": {
"jasmine-core": "^3.10.1",
"karma": "^6.3.8",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^4.0.1",
"karma-requirejs": "^1.1.0",
"karma-traceur-preprocessor": "^1.0.0"
},
"browserify": {
"transform": [
"babelify"
]
}
}