forked from arangodb/arangojs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
{
"name": "arangojs",
"version": "4.3.0",
"license": "Apache-2.0",
"description": "The official ArangoDB JavaScript driver.",
"homepage": "https://github.com/arangodb/arangojs",
"author": "ArangoDB GmbH",
"keywords": [
"arango",
"arangodb",
"aql",
"nosql",
"client",
"driver",
"api",
"http",
"rest"
],
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib/",
"package.json",
"README.md",
"LICENSE"
],
"browser": {
"./src/util/request.js": "./src/util/request-xhr.js",
"./src/util/byte-length.js": "./node_modules/utf8-length/index.js"
},
"scripts": {
"test": "mocha --growl",
"cover": "istanbul cover --report lcov _mocha",
"precoveralls": "npm run cover",
"coveralls": "cat ./coverage/lcov.info | coveralls ; rm -rf ./coverage",
"watch": "npm-run-all -p watch:*",
"watch:dist": "watch 'npm run dist' ./src",
"watch:test": "watch 'npm run lint && npm run test' ./src ./test",
"dist": "npm-run-all -p dist:*",
"dist:node": "babel --compact false -d lib src",
"dist:browser": "browserify src/index.js -s arangojs -g babelify -g uglifyify -o arangojs.min.js",
"lint": "eslint src test",
"prepublish": "npm run lint && npm run dist && node -e 'require(\"./\");'"
},
"dependencies": {
"http-errors": "1.4.0",
"linkedlist": "1.0.1"
},
"devDependencies": {
"babel": "5.8.34",
"babel-eslint": "4.1.8",
"babelify": "6.4.0",
"browserify": "13.0.0",
"chai": "3.5.0",
"core-js": "2.1.0",
"coveralls": "2.11.6",
"eslint": "1.10.3",
"istanbul": "0.4.2",
"mocha": "2.4.5",
"npm-run-all": "1.5.1",
"uglifyify": "3.0.1",
"utf8-length": "0.0.1",
"watch": "0.17.1",
"xhr": "2.2.0"
},
"contributors": [
{
"name": "Alan Plum",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/arangodb/arangojs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/arangodb/arangojs.git"
}
}