-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 756 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 756 Bytes
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
{
"private": true,
"name": "ultimate-crosscode-typedefs",
"version": "0.0.1",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@types/jquery": "1.10.x",
"@types/node": ">=11.9",
"@types/semver": "6.2.x || 6.3.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-dmitmel": "dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"scripts": {
"check": "tsc --noEmit",
"watch": "tsc --noEmit --watch",
"lint": "eslint . --ext .ts",
"check-fmt": "prettier --check '**/*.ts'"
}
}