-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
103 lines (103 loc) · 2.62 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "orientjs",
"description": "Official node.js driver for OrientDB. Fast, lightweight, uses the binary protocol.",
"keywords": [
"orientdb",
"orient",
"driver",
"graph",
"database",
"db",
"graphdb",
"node",
"node.js"
],
"version": "3.2.0",
"author": {
"name": "Enrico Risa",
"email": "[email protected]"
},
"contributors": [
{
"name": "Charles Pick",
"email": "[email protected]"
},
{
"name": "Giraldo Rosales",
"email": "[email protected]"
},
{
"name": "Gabriel Petrovay",
"email": "[email protected]"
},
{
"name": "Ryan Fields",
"email": "[email protected]"
},
{
"name": "Federico Fissore",
"email": "[email protected]"
},
{
"name": "Navin Parray",
"email": "[email protected]"
},
{
"name": "Saeed Tabrizi",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "http://github.com/orientechnologies/orientjs.git"
},
"dependencies": {
"bluebird": "~3.7.2",
"fast.js": "^0.1.1",
"generic-pool": "^3.9.0",
"node-biginteger": "^0.0.10",
"parse-function": "5.6.10",
"request": "^2.87.0",
"signed-varint": "2.0.1",
"tls": "~0.0.1",
"yargs": "~17.7.2"
},
"devDependencies": {
"expect.js": "~0.3.1",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"jsdoc": "4.0.2",
"jshint": "~2.13.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"should": "~13.2.3"
},
"optionalDependencies": {
"orientjs-native": "^3.2.0"
},
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"orientjs": "./bin/orientjs"
},
"scripts": {
"pretest": "./node_modules/.bin/jshint ./lib",
"test": "echo \"\n\nNOTICE: If tests fail, please ensure you've set the correct credentials in test/test-server.json\n\n\"; node ./node_modules/nyc/bin/nyc mocha ./test/index.js ./test/**/*.js ./test/**/**/*.js ./test/**/**/**/*.js ./test/**/**/**/**/*.js --reporter=spec -t 10000 --exit",
"watch": "mocha ./test/index.js ./test/**/*.js ./test/**/**/*.js ./test/**/**/**/*.js ./test/**/**/**/**/*.js --reporter=spec -t 10000 --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "./node_modules/.bin/jshint ./lib",
"docs": "jsdoc -c conf.json --readme README.md",
"open-docs": "open ./docs/index.html"
},
"licenses": [
{
"type": "Apache License, Version 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}