-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 KB
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
{
"name": "@sivrad/matrix-cli",
"version": "1.0.0",
"description": "Interact with a Matrix Database through a CLI.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/sivrad/matrix-cli.git",
"author": "Max Koon <maxk@nix2.io>",
"license": "MIT",
"private": false,
"prettier": "@nix2/prettier-config",
"scripts": {
"format": "prettier --write ./src/**",
"test-format": "prettier --check ./src/**",
"test": "nyc mocha -r ts-node/register tests/**",
"lint": "eslint src/**",
"mk-docs": "typedoc --name \"Documentation\" && touch ./docs/.nojekyll",
"prepublish": "tsc",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"@nix2/prettier-config": "^1.0.2",
"@types/inquirer": "^7.3.3",
"@types/mocha": "8.0.4",
"@types/node": "14.14.10",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"eslint": "7.14.0",
"eslint-plugin-jsdoc": "30.7.8",
"mocha": "8.2.1",
"nyc": "^15.1.0",
"prettier": "2.1.2",
"ts-node": "9.1.0",
"typedoc": "0.19.2",
"typescript": "4.0.5"
},
"files": [
"dist"
],
"dependencies": {
"@sivrad/matrix": "^1.0.39",
"cli-table": "^0.3.6",
"inquirer": "^8.1.2",
"ora": "^5.4.1"
},
"bin": {
"mtx": "./dist/index.js"
}
}