This repository has been archived by the owner on Mar 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "oratrix",
"version": "0.0.2",
"description": "CLI application for checking package.json consistency across repositories.",
"main": "dist/cli.js",
"bin": {
"oratrix": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"postbuild": "cpy --cwd=src --parents 'config/**/*.json' ../dist",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"prepare": "husky install",
"pretest": "eslint --ignore-path .gitignore .",
"test": "TS_NODE_FILES=true nyc mocha -r ts-node/register test/**/*.ts"
},
"files": [
"dist"
],
"engines": {
"node": "^16 || ^14 || ^12"
},
"keywords": [],
"repository": "https://github.com/nodeshift/oratrix.git",
"author": "Red Hat, Inc.",
"contributors": [
{
"name": "Alex Alikiotis",
"email": "[email protected]"
},
{
"name": "Helio Frota",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.12",
"@types/proxyquire": "^1.3.28",
"@types/rewire": "^2.5.28",
"@types/sinon": "^10.0.2",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"mocha": "^9.1.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"rewire": "^5.0.0",
"sinon": "^11.1.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.0",
"log-symbols": "^5.0.0",
"yargs": "^17.0.1"
},
"preferGlobal": true
}