-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
74 lines (74 loc) · 2.33 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
{
"name": "animation-timeline-js",
"version": "2.3.5",
"description": "animation timeline control based on the canvas.",
"main": "lib/animation-timeline.min.js",
"types": "lib/animation-timeline.d.ts",
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/core": "7.24.9",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.24.8",
"@babel/preset-typescript": "7.24.7",
"@eslint/js": "9.7.0",
"@jest/globals": "29.7.0",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"eslint": "9.7.0",
"eslint-config-prettier": "^9.1.0",
"globals": "15.8.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.3",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.5.3",
"typescript-eslint": "7.16.1",
"webpack": "5.93.0",
"webpack-cli": "5.1.4"
},
"scripts": {
"start": "echo \"Run npm build and open index.html in your browser. You have to run build command every time files are changed.\" && exit 1",
"test": "jest --coverage",
"build-ts-def": "tsc -emitDeclarationOnly",
"build": "webpack && npm run build-ts-def",
"lint": "eslint src tests",
"webpack": "npm run build",
"format": "prettier --write src/**/*.{ts,js,css,scss,html} tests/**/*.{ts,js,css,scss,html} --ignore-path .gitignore",
"format:check": "prettier --check src/**/*.{ts,js,css,scss,html} tests/**/*.{ts,js,css,scss,html} --ignore-path .gitignore",
"check": "npm run lint && npm run format:check && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ievgennaida/js-animation-timeline-control.git"
},
"jest": {
"testEnvironment": "jsdom",
"coveragePathIgnorePatterns": [
"<rootDir>/src/animation-timeline.ts",
"<rootDir>/src/enums",
"<rootDir>/src/models",
"<rootDir>/lib",
"<rootDir>/tests"
]
},
"keywords": [
"js",
"animation",
"timeline",
"canvas",
"html5",
"no",
"libs",
"keyframes",
"editor"
],
"author": "Ievgen Naida",
"license": "MIT",
"bugs": {
"url": "https://github.com/ievgennaida/js-animation-timeline-control/issues"
},
"homepage": "https://ievgennaida.github.io/animation-timeline-control/index.html"
}