-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.46 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.46 KB
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
{
"name": "@trust/model",
"version": "0.2.0",
"description": "A PouchDB adapter for the json-document modelling framework.",
"main": "src/index.js",
"scripts": {
"test": "nyc _mocha test",
"jsdoc": "jsdoc -c jsdoc.json -r",
"coverage": "nyc --reporter=lcov _mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EternalDeiwos/model.git"
},
"keywords": [
"CouchDB",
"PouchDB",
"Database",
"Offline",
"Live",
"Soft Realtime",
"Push",
"Replicated",
"Distributed",
"Embedded",
"LevelDB",
"LocalStorage",
"IndexedDB",
"JOSE",
"Crypto",
"Cryptography",
"JWT",
"JWD",
"Signature",
"Signatures",
"JSON Mapping",
"JSON Document",
"JSON Schema",
"Model",
"Document"
],
"author": "MIT Connection Science",
"contributors": [
"Greg Linklater <greg@gryphus.io>",
"Christian Smith <smith@anvil.io>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EternalDeiwos/model/issues"
},
"homepage": "https://github.com/EternalDeiwos/model#readme",
"dependencies": {
"@trust/json-document": "^0.1.4",
"@trust/jwt": "^0.5.1",
"pouchdb": "^6.2.0",
"pouchdb-find": "^6.2.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"codecov": "^2.2.0",
"jsdoc": "^3.5.0",
"mocha": "^3.4.2",
"nyc": "^11.3.0",
"sinon": "^2.3.7",
"sinon-chai": "^2.11.0"
}
}