This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "dexie-mongoify",
"version": "1.3.0",
"description": "Dexie.js plugin with MongoDB-like API",
"author": {
"name": "YurySolovyov"
},
"repository": {
"type": "git",
"url": "https://github.com/YuriSolovyov/Dexie-mongoify"
},
"scripts": {
"lint": "eslint src",
"test": "node_modules/.bin/karma start karma-test.conf.js --single-run --browsers Chrome",
"test:debug": "node_modules/.bin/karma start karma-test.conf.js --browsers Chrome",
"build": "webpack -p",
"build:watch": "webpack --watch",
"bench": "node_modules/.bin/karma start karma-bench.conf.js --single-run --browsers Chrome",
"bench:debug": "node_modules/.bin/karma start karma-bench.conf.js --browsers Chrome"
},
"keywords": [
"mongo",
"indexeddb",
"dexie"
],
"engines": {
"node": ">= 4.2"
},
"main": "src/dexie.mongoify.js",
"dependencies": {
"only": "^0.0.2",
"object-assign": "^4.1.0",
"array-concat": "^0.1.1"
},
"devDependencies": {
"webpack": "^1.13.1",
"eslint": "^3.8.0",
"jasmine-core": "^2.5.2",
"benchmark": "^2.1.1",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-jasmine-matchers": "^3.0.1",
"karma-mocha-reporter": "^2.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-benchmark": "git+https://github.com/lazd/karma-benchmark.git",
"karma-benchmark-reporter": "git+https://github.com/lazd/karma-benchmark-reporter.git"
},
"peerDependencies": {
"dexie": ">= 1.3"
},
"license": "MIT"
}