-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.06 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
67
68
69
70
71
{
"name": "@bcc-code/feathers-arangodb",
"version": "6.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/bcc-code/feathers-arangodb.git"
},
"bugs": {
"url": "https://github.com/Brian-McBride/feathers-arangodb/issues"
},
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"REST",
"Socket.io",
"realtime",
"arango",
"arangodb",
"service"
],
"scripts": {
"test": "npm run build && npm run coverage",
"test:debug": "npm run build && npm run mocha:debug",
"clean": "shx rm -rf lib/ && shx rm -rf test/data/",
"coverage": "nyc npm run mocha",
"mocha": "npm run clean && cross-env NODE_ENV=test LOGGING_LEVEL=info ts-mocha \"tests/*.ts\" --recursive --timeout 5000 --exit",
"mocha:debug": "npm run clean && cross-env NODE_ENV=test ts-mocha \"tests/*.ts\" --inspect-brk=0.0.0.0:9555 --recursive --timeout 50000 --exit",
"build": "tsc"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"@feathersjs/commons": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/feathers": "^4.5.12",
"@google-cloud/logging-winston": "^6.0.0",
"arangojs": "^7.8.0",
"lodash": "^4.17.21",
"uberproto": "^2.0.6",
"winston": "^3.3.4"
},
"devDependencies": {
"@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",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"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": "^5.4.5"
}
}