forked from JoshuaKGoldberg/TypeStat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.77 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
{
"author": "josh Goldberg",
"bin": {
"typestat": "bin/typestat"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^6.0.0",
"automutate": "^0.9.0",
"builtin-modules": "^3.2.0",
"chalk": "^4.1.1",
"commander": "^11.0.0",
"enquirer": "^2.3.6",
"glob": "^10.0.0",
"minimatch": "^8.0.0",
"mz": "^2.7.0",
"strip-ansi": "^6.0.0",
"ts-api-utils": "^1.0.3",
"typescript": "^5.1.6"
},
"description": "Converts JavaScript to TypeScript and TypeScript to better TypeScript.",
"devDependencies": {
"@babel/core": "7.23.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/preset-env": "7.23.5",
"@babel/preset-typescript": "7.23.3",
"@types/glob": "8.1.0",
"@types/jest": "29.5.11",
"@types/minimatch": "^5.0.0",
"@types/mz": "2.7.8",
"@types/node": "20.10.3",
"@types/prop-types": "15.7.11",
"@types/react": "18.2.69",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"automutate-tests": "0.5.0",
"babel-jest": "29.7.0",
"chai": "4.3.10",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-no-only-tests": "3.1.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"markdownlint": "0.32.1",
"markdownlint-cli": "0.37.0",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"sentences-per-line": "0.2.1"
},
"license": "MIT",
"lint-staged": {
"**/*.{js,json,md,ts,xml,yaml}": [
"prettier --write"
]
},
"main": "src/index.js",
"name": "typestat",
"repository": {
"type": "git",
"url": "git+https://github.com/JoshuaKGoldberg/TypeStat.git"
},
"scripts": {
"compile": "tsc",
"format": "yarn prettier --write",
"format:verify": "yarn prettier --list-different \"**/*.{js,json,md,ts,yml}\"",
"format:write": "yarn format:verify --write",
"lint": "run-p lint:*",
"lint:eslint": "eslint ./src/**/*.ts",
"lint:markdownlint": "markdownlint --config .markdownlint.json --rules ./node_modules/sentences-per-line/index.js README.md",
"precommit": "lint-staged",
"test": "yarn run test:unit && yarn run test:mutation",
"test:mutation": "mocha src/tests/runTests.js --timeout 50000",
"test:unit": "jest --config=jest.config.js",
"verify": "yarn run tsc && yarn run lint && yarn run test"
},
"version": "0.7.3"
}