forked from meteorrn/minimongo-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "@meteorrn/minimongo",
"version": "1.0.0",
"description": "Fork of minimongo designed for caching",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha 'test/**/*.tests.js'",
"test-debug": "NODE_ENV=test ./node_modules/.bin/mocha --inspect --debug-brk 'test/**/*.tests.js'",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --watch 'test/**/*.tests.js'",
"test:coverage": "NODE_ENV=test nyc --reporter=html --reporter=lcov --reporter=text ./node_modules/.bin/mocha 'test/**/*.tests.js'",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"build": "gulp"
},
"license": "LGPLv3",
"homepage": "https://github.com/meteorrn/minimongo-cache",
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"chai": "1.9.2",
"mocha": "9.2.2",
"nyc": "15.1.0",
"prettier": "2.7.1",
"puppeteer": "13.7.0",
"sinon": "1.8.2"
},
"dependencies": {
"base64-js": "^1.5.1",
"eventemitter3": "^1.1.0",
"invariant": "^2.1.1"
}
}