-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
{
"name": "@oada/oada-cache",
"version": "3.1.8",
"description": "node library for interacting with and locally caching data served on an oada-compliant server",
"main": "./src/index.js",
"directories": {
"test": "test",
"src": "src"
},
"mocha": {
"exit": true,
"spec": "test/**/*.test.js",
"file": [
"./test/setup-all-tests.js"
]
},
"scripts": {
"test": "mocha",
"test-watch": "mocha -w",
"dev": "cpx --watch --verbose './src/**' '$APP_DIR/node_modules/@oada/oada-cache/src/'"
},
"author": "oada",
"license": "Apache-2.0",
"dependencies": {
"@oada/oada-id-client": "^1.0.8",
"axios": "^0.19.2",
"bluebird": "^3.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"concurrent-queue": "^7.0.2",
"debug": "^4.1.0",
"isomorphic-ws": "^4.0.1",
"json-pointer": "^0.6.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"performance-now": "^2.1.0",
"pouchdb": "^7.0.0",
"prettyjson": "^1.2.1",
"url": "^0.11.0",
"uuid": "^3.3.2",
"ws": "^7.2.1"
},
"devDependencies": {
"http-status": "^1.2.0",
"mocha": "^7.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oada/oada-cache.git"
},
"keywords": [
"cache",
"oada",
"node",
"javascript"
],
"bugs": {
"url": "https://github.com/oada/oada-cache/issues"
},
"homepage": "https://github.com/oada/oada-cache#readme"
}