This repository has been archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.62 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
{
"name": "storage-mixin",
"description": "Ampersand model mixin to persist data via various storage backends",
"bugs": {
"url": "https://github.com/mongodb-js/storage-mixin/issues"
},
"main": "index.js",
"directories": {
"test": "test"
},
"homepage": "https://github.com/mongodb-js/storage-mixin",
"version": "3.3.4",
"repository": {
"type": "git",
"url": "git+https://github.com/mongodb-js/storage-mixin.git"
},
"author": "Thomas Rueckstiess <thomas@mongodb.com>",
"contributors": [
"Thomas Rueckstiess <thomas@mongodb.com>",
"Lucas Hrabovsky <lucas@mongodb.com>"
],
"license": "Apache-2.0",
"keywords": [
"mongodb-js",
"preferences",
"settings",
"ampersand.js"
],
"scripts": {
"pretest:electron": "electron-rebuild --force --only keytar",
"test:electron": "electron-mocha --renderer",
"pretest:node": "node-gyp rebuild --directory node_modules/keytar/",
"test:node": "mocha",
"check": "mongodb-js-precommit",
"test": "npm run test:node && npm run test:electron"
},
"dependencies": {
"ampersand-model": "^8.0.1",
"ampersand-rest-collection": "^6.0.0",
"ampersand-sync": "^5.1.0",
"async": "^3.1.0",
"debug": "^4.1.1",
"hadron-ipc": "^1.1.0",
"keytar": "^5.0.0",
"localforage": "^1.7.3",
"lodash": "^4.17.15",
"rimraf": "^3.0.0",
"uuid": "^3.3.3",
"write-file-atomic": "^3.0.1"
},
"devDependencies": {
"electron": "^7.1.11",
"electron-mocha": "^8.1.2",
"electron-rebuild": "^1.8.8",
"eslint-config-mongodb-js": "^5.0.3",
"mocha": "^7.0.0",
"mongodb-js-precommit": "^2.0.0"
}
}