-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "cassandra-migration",
"description": "Simple schema migration tool for Apache Cassandra",
"keywords": [
"Cassandra",
"Migration",
"Schema"
],
"version": "2.6.1",
"author": "Joel Edwards (https://github.com/joeledwards)",
"contributors": [
"Joel Edwards <[email protected]> (https://github.com/joeledwards)",
"Jonas Verhoelen <[email protected]> (https://github.com/jverhoelen)"
],
"repository": {
"type": "git",
"url": "https://github.com/joeledwards/node-cassandra-migration.git"
},
"license": "MIT",
"main": "./lib/index",
"directories": {
"lib": "./lib"
},
"bin": {
"cassandra-migration": "bin/cassandra-migration"
},
"dependencies": {
"cassandra-driver": "^3.3.0",
"commander": "^2.9",
"durations": "^3.4.1",
"lodash": "^4.13.1",
"q": "^1.4"
},
"devDependencies": {
"coffee-script": "^1.10",
"mocha": "^5.2.0",
"wait-for-cassandra": "^2.1.0"
},
"scripts": {
"build": "cake build",
"prepublish": "cake build",
"start": "coffee src/index.coffee",
"test": "cake test"
},
"engines": {
"node": ">=0.10"
}
}