-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "types-mediawiki",
"version": "1.8.2",
"description": "TypeScript definitions for MediaWiki JS interface",
"types": "index.d.ts",
"scripts": {
"test": "tsd",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/wikimedia-gadgets/types-mediawiki.git"
},
"files": [
"mw",
"jquery",
"vue",
"api_params",
"index.d.ts"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/wikimedia-gadgets/types-mediawiki/issues"
},
"homepage": "https://github.com/wikimedia-gadgets/types-mediawiki#readme",
"dependencies": {
"@types/jquery": "^3.5.5",
"@types/oojs-ui": "^0.46.0",
"vue": "3.3.9"
},
"devDependencies": {
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"tsd": "^0.31.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts(x)?": "prettier --write"
},
"tsd": {
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
"."
]
}
}
}