-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "video-timeline",
"version": "1.0.0-development",
"description": "Video timeline with keyframes",
"scripts": {
"dev": "webpack --watch --config webpack.prod.js",
"build": "npm run test && webpack --config webpack.prod.js && npm run create:esm",
"create:types": "tsc -p tsconfig.types.json",
"create:esm": "sh bin/build-esm.sh",
"commit": "git-cz",
"test": "jest",
"semantic-release": "semantic-release --branches main"
},
"keywords": [
"video",
"timeline",
"keyframes",
"media",
"mp4",
"mp3",
"details",
"player",
"html5"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"author": {
"name": "Dmitry Pylnyk",
"email": "dmitry.yaha.dev@gmail.com"
},
"repository": {
"url": "https://github.com/yahayahu/video-timeline.git",
"type": "git"
},
"main": "./dist/video-timeline.js",
"style": "./dist/video-timeline.css",
"module": "./dist/esm/scripts/timeline.js",
"types": "./dist/types/timeline.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.3",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.3",
"progress-webpack-plugin": "^1.0.16",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"semantic-release": "^20.1.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}