-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "cassandra-nodetool",
"description": "Cassandra Nodetool on Node.js",
"version": "0.1.0",
"main": "index.js",
"author": "aoinu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Aoinu/cassandra-nodetool.git"
},
"private": false,
"bin": {
"jsnodetool": "lib/cli/index.js"
},
"scripts": {
"lint": "eslint lib/**/*.js",
"lint:fix": "eslint --fix lib/**/*.js",
"test": "jest --no-cache",
"test:ci": "jest --ci --no-cache --coverage --reporters=default --reporters=jest-junit",
"test:cov": "jest --coverage --no-cache",
"posttest:ci": "codecov"
},
"engines": {
"node": ">=7.10.1"
},
"dependencies": {
"argparse": "^1.0.10",
"jmx": "^0.7.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.12.1",
"eslint-plugin-jest": "^22.1.3",
"jest": "^23.6.0",
"jest-junit": "^6.1.0"
}
}