forked from stevencrader/transcriptator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.09 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
{
"name": "transcriptator",
"version": "1.0.1",
"description": "Library for converting the various transcript file formats to a common format.",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"lint": "run-p -cln 'lint:*'",
"lint:eslint": "eslint src/ test/",
"lint:prettier": "prettier --check .",
"lint-fix": "run-p -cln 'lint-fix:*'",
"lint-fix:other": "prettier --write '**/*.{md,json,yml,eslintrc,config.js}'",
"lint-fix:eslint": "yarn lint:eslint --fix",
"test": "jest",
"test:coverage": "yarn test --coverage",
"tag": "npm version patch",
"publish": "yarn build && yarn npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevencrader/transcriptator.git"
},
"keywords": [
"podcasting",
"transcript"
],
"author": "Steven Crader",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevencrader/transcriptator/issues"
},
"homepage": "https://transcriptator.com/",
"files": [
"dist"
],
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/node": "^18.15.2",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"dotenv": "^16.0.3",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-airbnb-typescript-base": "^4.0.2",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.18.0",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"node-html-parser": "^6.1.5"
}
}