forked from schafe-vorm-fenster/wikibase-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 948 Bytes
/
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
{
"name": "wikibase-types",
"version": "0.3.0",
"description": "Types the Wikibase / Wikidata API returns",
"keywords": [
"wikidata",
"wikibase",
"wikibase-sdk",
"wikidata-sdk"
],
"license": "MIT",
"repository": "EdJoPaTo/wikibase-types",
"author": {
"name": "EdJoPaTo",
"email": "[email protected]",
"url": "https://edjopato.de"
},
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"test": "tsc --sourceMap && xo"
},
"type": "commonjs",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.0",
"del-cli": "^4.0.0",
"typescript": "^4.2.3",
"xo": "^0.50.0"
},
"files": [
"dist",
"!*.test.*"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"xo": {
"semicolon": false,
"rules": {
"@typescript-eslint/prefer-readonly-parameter-types": "error",
"import/extensions": [
"error",
"never"
]
}
}
}