-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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
{
"name": "oada-app-cache",
"version": "0.1.0",
"description": "A javascript wrapper for syncing data between an OADA server and a PouchDb cache.",
"main": "cache.js",
"scripts": {
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 mocha --require babel-register test/index.js"
},
"babel": {
"presets": [
"es2015"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenATK/oada-app-cache.git"
},
"keywords": [
"cache",
"pouchdb",
"oada"
],
"author": "Jake Chung jakerev110@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenATK/oada-app-cache/issues"
},
"homepage": "https://github.com/OpenATK/oada-app-cache#readme",
"dependencies": {
"bluebird": "^3.5.0",
"chai": "^4.0.2",
"json-pointer": "^0.6.0",
"leveldown": "^1.7.2",
"lodash": "^4.17.4",
"mocha": "^3.4.2",
"moment": "^2.18.1",
"oada-id-client": "github:OADA/oada-id-client-js",
"pouchdb": "^6.1.2",
"superagent": "^3.5.2",
"superagent-promise": "^1.1.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1"
}
}