-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
92 lines (92 loc) · 2.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "express-cassandra",
"version": "2.9.1",
"dependencies": {
"async": "^2.6.4",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.4.6",
"cassandra-driver": "^4.6.2",
"chai": "^4.1.2",
"check-types": "^7.4.0",
"debug": "^3.1.0",
"deep-diff": "^0.3.4",
"JSONStream": "^1.3.1",
"lodash": "^4.17.15",
"object-hash": "1.1.4",
"readdirp": "^2.1.0",
"readline-sync": "^1.4.4",
"semver": "^5.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"codeclimate-test-reporter": "^0.5.0",
"cross-env": "^5.0.5",
"echo-cli": "^2.0.0",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"mocha": "^10.1.0",
"mocha-logger": "1.0.8",
"mocha-silent-reporter": "^1.0.0",
"nyc": "^15.1.0",
"vows": "^0.8.3"
},
"author": {
"name": "Mahafuzur Rahman",
"url": "http://express-cassandra.readthedocs.io"
},
"scripts": {
"test": "npm run build --silent && npm run mocha --silent && npm run cover --silent && npm run lint --silent && npm run codeclimate --silent",
"build": "echo-cli 'building babel sources, please wait...' && babel src -d lib",
"prepare": "npm run build --silent",
"mocha": "echo-cli 'starting mocha test runner...' && mocha --require babel-core/register --bail",
"lint": "echo-cli 'checking for eslint errors...' && eslint src && eslint test",
"cover": "echo-cli 'building coverage data, please wait...' && nyc --reporter=lcov --reporter=text-summary --require babel-register mocha --reporter mocha-silent-reporter",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info || true"
},
"license": "LGPL-3.0",
"description": "Cassandra Object Models (ORM/ODM/OGM) for NodeJS with support for Apache Cassandra, ScyllaDB, Datastax Enterprise, Elassandra & JanusGraph.",
"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",
"apache-cassandra",
"scylla",
"scylladb",
"datastax",
"dse",
"elassandra",
"elastic",
"elasticsearch",
"elastic-search",
"graph",
"janus",
"janusgraph",
"janus-graph",
"orm",
"odm",
"model",
"models",
"node",
"nodejs",
"node-js",
"javascript",
"js"
],
"engines": {
"node": ">= 12"
}
}