This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
51
{
"name": "@sivrad/matrix-collection-tools",
"version": "1.0.24",
"description": "Collection CI/CD.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/sivrad/package-template.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": "mocha -r ts-node/register tests/**",
"lint": "eslint src/**",
"start": "ts-node --transpile-only src/index.ts",
"start:d": "yarn start --dir ./matrix-collection-example/",
"mk-types": "ts-node ./scripts/mk-types.ts",
"build": "yarn mk-types & yarn tsc",
"publish-pkg": "yarn build & yarn publish --access=public",
"mk-example": "git clone git@github.com:sivrad/matrix-collection-example.git",
"patch": "yarn version --new-version patch"
},
"devDependencies": {
"@nix2/prettier-config": "^1.0.4",
"@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",
"json-schema-to-typescript": "^10.1.3",
"mocha": "8.2.1",
"prettier": "2.1.2",
"ts-node": "9.1.0",
"typedoc": "0.19.2",
"typescript": "4.0.5"
},
"files": [
"dist"
],
"dependencies": {
"ajv": "^8.0.1",
"axios": "^0.21.1",
"commander": "^7.2.0"
},
"bin": {
"matrix": "./dist/index.js"
}
}