forked from masumsoft/express-cassandra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
{
"name": "express-cassandra",
"version": "1.8.0",
"dependencies": {
"async": "^1.0.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"check-types": "^1.4.0",
"debug": "^2.2.0",
"deep-diff": "^0.3.4",
"dse-driver": "^1.1.0",
"lodash": "^4.14.2",
"object-hash": "1.1.4",
"readline-sync": "^1.4.4"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-3": "^6.11.0",
"babel-register": "^6.14.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"vows": "^0.8.1"
},
"optionalDependencies": {},
"author": {
"name": "Mahafuzur Rahman",
"url": "https://www.codinglogs.com"
},
"scripts": {
"test": "babel src -d lib && mocha --bail --compilers js:babel-register && eslint src",
"build": "babel src -d lib",
"prepublish": "npm run build",
"lint": "eslint src; exit 0",
"coverage": "istanbul cover _mocha -- -R spec"
},
"license": "LGPL-3.0",
"description": "Framework Independent Cassandra Object Models (ORM) for NodeJS",
"repository": {
"type": "git",
"url": "git://github.com/masumsoft/express-cassandra.git"
},
"main": "lib/expressCassandra.js",
"readmeFilename": "README.md",
"homepage": "https://github.com/masumsoft/express-cassandra",
"bugs": {
"url": "https://github.com/masumsoft/express-cassandra/issues"
},
"keywords": [
"cassandra",
"orm",
"model",
"db",
"node",
"nodejs",
"express",
"expressjs",
"restify",
"hapi",
"hapijs",
"koa",
"koajs",
"javascript",
"js"
],
"engine": "node >= 0.10.x"
}