-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
149 lines (149 loc) · 4.1 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@hover/javascript",
"version": "0.0.0-semantically-released",
"description": "CLI toolbox for common scripts for JavaScript + TypeScript projects",
"engines": {
"node": ">=14.21.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bin": {
"hover-scripts": "dist/index.js"
},
"scripts": {
"build": "run-p 'build:*'",
"build:source": "babel --source-maps --out-dir dist --ignore '**/__tests__/**','**/__mocks__/**' --copy-files --no-copy-ignored src",
"build:types": "tsc -p src/",
"ci-after-success": "node src ci-after-success",
"commit": "node src commit",
"depcheck": "node src depcheck",
"format": "node src format",
"lint": "node src lint",
"prepublishOnly": "yarn build",
"start": "run-p 'start:*'",
"start:source": "yarn build:source --watch",
"start:types": "tsc -b -w --preserveWatchOutput src/",
"test": "SWC_NODE_PROJECT=src/tsconfig.json node src test",
"test:update": "node src test --updateSnapshot",
"validate": "node src validate",
"prepare": "husky install"
},
"files": [
"api",
"api.d.ts",
"dist",
"commitlint.js",
"config.js",
"eslint-react.js",
"eslint",
"jest.js",
"lint-staged",
"prettier.js",
"release.js",
"tsconfig.json"
],
"keywords": [],
"author": "Jamie Rolfs <[email protected]>",
"license": "MIT",
"dependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@commitlint/prompt": "^17.8.1",
"@swc-node/jest": "^1.5.6",
"@swc/core": "^1.3.38",
"@swc/helpers": "^0.4.14",
"@types/jest": "^29.5.4",
"@types/lodash.has": "^4.5.9",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.19.61",
"@types/rimraf": "^3.0.2",
"@types/which": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"commitizen": "^4.3.1",
"concurrently": "^7.6.0",
"cosmiconfig": "^8.3.6",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"doctoc": "^2.2.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"glob": "^8.1.0",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-github-actions-reporter": "^1.0.3",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.3.0",
"lodash.has": "^4.5.2",
"mkdirp": "^2.1.3",
"prettier": "^2.8.8",
"read-pkg-up": "^7.0.1",
"rimraf": "^4.1.1",
"tslib": "^2.8.0",
"typescript": "^4.9.5",
"which": "^3.0.0",
"yargs-parser": "^21.1.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020
},
"extends": [
"kentcdodds",
"kentcdodds/jest"
],
"rules": {
"no-process-exit": "off",
"import/no-dynamic-require": "off",
"import/no-unassigned-import": "off",
"no-console": "off",
"no-nested-ternary": "off",
"no-useless-catch": "off",
"jest/prefer-snapshot-hint": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/hoverinc/hover-javascript.git"
},
"bugs": {
"url": "https://github.com/hoverinc/hover-javascript/issues"
},
"homepage": "https://github.com/hoverinc/hover-javascript#readme",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@types/cross-spawn": "^6.0.6",
"depcheck": "^1.4.7",
"eslint-config-kentcdodds": "^20.5.0",
"husky": "^8.0.3",
"jest-in-case": "^1.0.2",
"npm-run-all": "^4.1.5",
"slash": "^3.0.0"
},
"peerDependencies": {
"ts-jest": "^29.0.0"
},
"peerDependenciesMeta": {
"ts-jest": {
"optional": true
}
},
"packageManager": "[email protected]"
}