-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.58 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
65
66
67
68
69
70
{
"name": "transcriptator",
"version": "1.1.4",
"packageManager": "[email protected]",
"description": "Library for converting the various transcript file formats to a common format.",
"main": "index.ts",
"types": "index.d.ts",
"scripts": {
"build": "run-s -cln 'build:*'",
"build:clean": "shx rm -rf dist",
"build:tsc": "tsc --sourceMap false",
"build:cp": "shx cp package.json dist && shx cp README.md dist && shx cp LICENSE.md dist",
"build:replace": "shx sed -i 's/\"main\": \"index.ts\"/\"main\": \"index.js\"/g' dist/package.json > /dev/null",
"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,config.js}'",
"lint-fix:eslint": "yarn lint:eslint --fix",
"test": "jest",
"test:coverage": "yarn test --coverage",
"tag": "npm version patch",
"build-publish": "yarn lint && yarn test && yarn build && cd dist && npm publish",
"build-publish-beta": "yarn lint && yarn test && yarn build && cd dist && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevencrader/transcriptator.git"
},
"keywords": [
"podcasting",
"transcript"
],
"author": {
"name": "Steven Crader",
"url": "https://steven.crader.co"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stevencrader/transcriptator/issues"
},
"homepage": "https://transcriptator.com/",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-airbnb-typescript-base": "^5.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sonarjs": "^0.23.0",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"node-html-parser": "^6.1.12"
}
}