This repository has been archived by the owner on Jun 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 1.74 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
{
"name": "sails-cassandra",
"description": "Apache Cassandra adapter for Sails/Waterline",
"version": "0.12.15",
"author": "Alkeron Multimedia Inc. <info@alkeron.com>",
"contributors": [
{
"name": "dtoubelis",
"github": "https://github.com/dtoubelis"
}
],
"main": "./lib/adapter.js",
"engines": {
"node": ">=4.0"
},
"repository": {
"type": "git",
"url": "git://github.com/dtoubelis/sails-cassandra.git"
},
"bugs": {
"url": "https://github.com/dtoubelis/sails-cassandra/issues"
},
"keywords": [
"sails",
"waterline",
"cassandra",
"orm"
],
"dependencies": {
"async": "^2.0.1",
"cassandra-driver": "^3.0.0",
"lodash": "^4.15.0",
"semver": "^5.5.0",
"through2": "^2.0.1",
"waterline-errors": "~0.10.0"
},
"devDependencies": {
"captains-log": "~0.11.5",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"waterline": "^0.12.2",
"waterline-adapter-tests": "^0.12.1"
},
"waterlineAdapter": {
"waterlineVersion": "~0.10.0",
"interfaces": [
"semantic",
"queryable",
"migratable",
"iterable",
"sql"
]
},
"sails": {
"adapter": {
"sailsVersion": "~0.10.0",
"implements": [
"semantic",
"queryable",
"migratable",
"iterable",
"sql"
]
}
},
"scripts": {
"lint": "node_modules/.bin/eslint lib test",
"test-unit": "NODE_ENV=test node_modules/.bin/mocha --reporter spec --check-leaks test/unit/*.js",
"test-integration": "NODE_ENV=test node test/integration/runner.js",
"test": "npm run test-unit"
},
"license": "MIT"
}