-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.29 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
72
73
74
75
76
77
78
79
80
{
"name": "feathers-arangodb",
"version": "2.1.6",
"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/Brian-McBride/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": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"coverage": "jest",
"test": "npm run coverage",
"build": "tsc"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"@feathersjs/commons": "^4.0.0",
"@feathersjs/errors": "^3.3.4",
"arangojs": "^6.9.0",
"lodash.get": "^4.4.2",
"lodash.isboolean": "^3.0.3",
"lodash.isempty": "^4.4.0",
"lodash.isnumber": "^3.0.3",
"lodash.isstring": "^4.0.1",
"lodash.omit": "^4.5.0",
"uberproto": "^2.0.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@feathersjs/feathers": "^3.2.3",
"@types/feathersjs__errors": "^3.2.1",
"@types/feathersjs__express": "^1.1.4",
"@types/feathersjs__feathers": "^3.1.0",
"@types/feathersjs__socketio": "^3.0.3",
"@types/jest": "^23.3.10",
"@types/lodash.get": "^4.4.4",
"@types/lodash.isboolean": "^3.0.4",
"@types/lodash.isempty": "^4.4.4",
"@types/lodash.isnumber": "^3.0.4",
"@types/lodash.isstring": "^4.0.4",
"@types/lodash.omit": "^4.5.4",
"@types/uuid": "^3.4.4",
"eslint": "^5.9.0",
"jest": "^23.6.0",
"jest-junit": "^6.0.0",
"jest-runner-tslint": "^1.0.5",
"nodemon": "^1.18.7",
"nyc": "^13.1.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.1"
}
}