-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.55 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "codehawk-cli",
"version": "10.1.0",
"description": "Static analysis tool for JavaScript projects",
"scripts": {
"build:watch": "tsc --watch",
"build": "tsc",
"isclean": "git diff --exit-code",
"lint:fix": "eslint --fix src/*.**",
"lint": "eslint src/*.**",
"tag:patch": "np patch --no-publish",
"tag:minor": "np minor --no-publish",
"tag:major": "np major --no-publish",
"prettier:fix": "prettier --write src",
"prettier": "prettier --check src",
"reflect": "node build/index.js src",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest --testTimeout 15000",
"verify": "yarn build && yarn test && yarn lint && yarn prettier && yarn reflect && yarn isclean",
"test:updateexpectations": "ts-node --files src/updateExpectedOutputs.ts"
},
"author": "Sam Brown (https://github.com/sgb-io)",
"repository": {
"type": "git",
"url": "https://github.com/sgb-io/codehawk-cli.git"
},
"homepage": "https://github.com/sgb-io/codehawk-cli",
"bugs": {
"url": "https://github.com/sgb-io/codehawk-cli/issues"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-typescript": "^7.20.7",
"badgen": "^3.2.2",
"flow-remove-types": "^2.111.3",
"is-dotdir": "^1.0.1",
"is-dotfile": "^2.0.0",
"slash": "^3.0.0",
"typhonjs-escomplex": "^0.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.8",
"@types/is-dotdir": "^1.0.0",
"@types/is-dotfile": "^2.0.0",
"@types/jest": "^28.1.3",
"@types/node": "^14.0.11",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "7",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"jest": "^28.1.3",
"np": "^7.6.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"build"
],
"bin": {
"codehawk": "build/index.js",
"codehawk-cli": "build/index.js"
},
"main": "build/codehawk.js",
"types": "build/codehawk.d.ts",
"engines": {
"node": ">=14"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/*.(spec|test).ts"
],
"testEnvironment": "node"
}
}