This repository has been archived by the owner on May 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "marsdb-localforage",
"version": "0.1.0",
"author": {
"name": "Artem Artemev",
"email": "art@studytime.me"
},
"contributors": [
"Artem Artemev"
],
"description": "MarsDB storage implementation for LocalForage",
"keywords": [
"mongo",
"minimongo",
"embedded",
"localforage",
"db",
"database",
"meteor"
],
"homepage": "https://github.com/c58/marsdb-localforage",
"repository": {
"type": "git",
"url": "git@github.com:c58/marsdb-localforage.git"
},
"dependencies": {
"invariant": "^2.2.0",
"localforage": "^1.3.1"
},
"peerDependencies": {
"marsdb": "0.6.x"
},
"devDependencies": {
"marsdb": "^0.6.0",
"core-js": "^2.0.1",
"babel-cli": "^6.3.17",
"babel-eslint": "^5.0.0-beta6",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"brfs": "^1.4.1",
"browserify": "^12.0.1",
"bulk-require": "^0.2.1",
"bulkify": "^1.1.1",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.6",
"del": "^2.2.0",
"envify": "^3.4.0",
"fbjs-scripts": "^0.5.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^1.1.1",
"gulp-if": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"mocha-phantomjs": "^4.0.2",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test_some": "mocha --require babelhook --reporter spec --timeout 1000",
"test_browser": "gulp build:browser:tests && mocha-phantomjs --reporter spec browser_tests.html",
"test": "mocha --require babelhook --reporter spec --timeout 1000 test/both test/node",
"coverage": "./node_modules/.bin/babel-node ./node_modules/istanbul/lib/cli cover _mocha test/both test/node -- -u exports -R spec && open coverage/lcov-report/index.html",
"coveralls": "./node_modules/.bin/babel-node ./node_modules/istanbul/lib/cli cover _mocha test/both test/node --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js ./lib && rm -rf ./coverage"
},
"main": "index.js",
"license": "MIT"
}