forked from rleenders/cassandra-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "cassandra-migrate",
"version": "1.0.2",
"description": "Cassandra migration for node.",
"main": "./app.js",
"bin": {
"migrate": "./app.js"
},
"scripts": {
"test": "mocha test/unit test/integration -t 10000 --recursive",
"debug-test": "mocha test/unit test/integration --recursive --debug-brk=5858",
"coverage": "istanbul cover --include-all-sources true node_modules/mocha/bin/_mocha -- test/unit test/integration -t 10000 --recursive",
"lint": "eslint .",
"nodemon": "nodemon --exec \"npm run lint && npm test && npm run coverage\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/UUX-Brasil/cassandra-migrate"
},
"bugs": {
"url": "https://github.com/UUX-Brasil/cassandra-migrate/issues"
},
"keywords": [
"cassandra",
"migrations",
"cql",
"migration",
"node"
],
"dependencies": {
"async": "^0.9.0",
"cassandra-driver": "^3.0.0",
"commander": "^2.8.1",
"itaas-nodejs-tools": "git+https://github.com/UUX-Brasil/itaas-nodejs-tools.git#v3.1.0",
"mkdirp": "^0.5.1",
"uuid": "^2.0.3"
},
"devDependencies": {
"eslint": "2.13.0",
"istanbul": "^0.4.4",
"mocha": "2.3.4",
"nodemon": "^1.9.2",
"rimraf": "^2.5.4",
"should": "8.2.2",
"supertest": "1.2.0"
},
"author": "",
"license": "MIT",
"homepage": "https://github.com/UUX-Brasil/cassandra-migrate#readme"
}