-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "mdmcli",
"version": "0.4.1",
"description": "A set of CLI tools for testing the MDMulti platform.",
"main": "cli.js",
"scripts": {
"start": "echo 'This is not the preferred method! Please use the bin command instead!' && node cli.js",
"test": "mocha --timeout 15000 --require @babel/register tests/*.js --exit",
"coverage:all": "npm run coverage:test && npm run coverage:report && npm run coverage:send",
"coverage:test": "nyc npm test",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage:send": "codecov"
},
"bin": {
"mdmcli": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mdmulti/cli.git"
},
"author": "MDMulti, Prouser123",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdmulti/cli/issues"
},
"homepage": "https://github.com/mdmulti/cli#readme",
"dependencies": {
"colors": "^1.4.0",
"compare-versions": "^3.5.1",
"node-forge": "^0.9.1",
"request": "^2.88.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/register": "^7.7.4",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"mocha": "^6.2.2",
"nixt": "^0.5.1",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=8"
}
}