-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "@ems-press/content-api-types",
"version": "1.0.0-beta.49",
"description": "Typescript types for the EMS Press Content API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typeScriptVersion": "4.1",
"scripts": {
"build": "rm -rf dist && ttsc",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"yalc:publish": "yalc push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ems-press/content-api-types.git"
},
"keywords": [
"ems-press",
"content-api",
"typescript"
],
"author": "André Gaul <gaul@ems.press>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ems-press/content-api-types/issues"
},
"homepage": "https://github.com/ems-press/content-api-types#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"ts-transformer-keys": "^0.4.3",
"ttypescript": "^1.5.15",
"typescript": "^4.1.3",
"yalc": "^1.0.0-pre.48"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"dependencies": {}
}