-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
62
63
64
65
66
{
"name": "@drwade/feathers-arangodb",
"version": "1.0.1",
"description": "ArangoDB Service/Adapter for FeathersJS",
"homepage": "https://github.com/AnatidaeProject/feathers-arangodb",
"main": "lib/",
"types": "lib/",
"author": "Brian McBride",
"repository": {
"type": "git",
"url": "git://github.com/Dr-Wade/feathers-arangodb.git"
},
"bugs": {
"url": "https://github.com/Dr-Wade/feathers-arangodb/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"arango",
"arangodb",
"service"
],
"scripts": {
"test": "npm run build && npm run coverage",
"clean": "shx rm -rf lib/ && shx rm -rf test/data/",
"coverage": "nyc npm run mocha",
"mocha": "npm run clean && cross-env NODE_ENV=test ts-mocha \"tests/*.ts\" --recursive --exit",
"build": "tsc"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"@feathersjs/commons": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"arangojs": "^7.0.1",
"lodash": "^4.17.15",
"uberproto": "^2.0.6"
},
"devDependencies": {
"@feathersjs/feathers": "^4.5.3",
"@types/chai": "^4.2.12",
"@types/feathersjs__errors": "^3.3.2",
"@types/feathersjs__express": "^1.1.6",
"@types/feathersjs__feathers": "^3.1.5",
"@types/feathersjs__socketio": "^3.0.7",
"@types/lodash": "^4.14.152",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"eslint": "^7.1.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
}
}