This repository was archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 KB
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": "@younginch/subtitle",
"version": "0.4.1",
"description": "@younginch/subtitle",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/younginch/subtitle.git"
},
"contributors": [
"Seungbin Oh <sboh1214@gmail.com> (https://sboh.dev/)",
"Myeongjin Shin <hanwoolmj2@gmail.com>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/younginch/subtitle/issues"
},
"homepage": "https://github.com/younginch/subtitle#readme",
"dependencies": {
"dayjs": "^1.11.3"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.0.3",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.6.4"
}
}