-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 995 Bytes
/
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
{
"name": "artisan-cassandra-orm",
"version": "0.0.1",
"description": "Node.js ORM for Cassandra 2.1+. Inspired by SQLAlchemy. WIP.",
"main": "lib/connection.js",
"scripts": {
"test": "node node_modules/jasmine-node/bin/jasmine-node spec && node node_modules/jshint/bin/jshint lib"
},
"repository": {
"type": "git",
"url": "https://github.com/MCProHosting/artisan-cassandra-orm.git"
},
"keywords": [
"database",
"db",
"cassandra",
"orm"
],
"author": "Connor Peet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MCProHosting/artisan-cassandra-orm/issues"
},
"homepage": "https://github.com/MCProHosting/artisan-cassandra-orm",
"devDependencies": {
"benchmark": "^1.0.0",
"jasmine-node": "~2.0.0",
"jshint": "^2.5.11"
},
"dependencies": {
"array-diff": "0.0.1",
"bluebird": "~2.3.11",
"cassandra-driver": "^1.0.2",
"deep-equal": "^0.2.1",
"lodash": "~2.4.1"
}
}