-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.43 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
{
"name": "html-flip-book",
"version": "1.0.0",
"description": "Flipbook component for HTML",
"homepage": "https://doradsoft.github.io/html-flip-book/",
"repository": {
"type": "git",
"url": "git+https://github.com/doradsoft/html-flip-book.git"
},
"bugs": {
"url": "https://github.com/doradsoft/html-flip-book/issues"
},
"engines": {
"node": ">22.5.0"
},
"scripts": {
"postinstall": "cd ./html-flip-book-base && npm install && cd ../html-flip-book-react && npm install && cd ./html-flip-book-react-example && npm install",
"update": "npx npm-check-updates --peer --deep -u && npm install",
"bundle": "npm run format:write && npm run build",
"ci-test": "npx jest --all --ci --coverage --coverageDirectory ./coverage",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint -c ./eslint.config.mjs",
"build": "npm ci && cd ./html-flip-book-base && npm ci && npm run build && cd ../html-flip-book-react && npm ci && cd ./html-flip-book-react-example && npm ci && npm run build",
"build:watch": "npm run build -- --watch",
"test": "npx jest --coverage --coverageDirectory ./coverage",
"all": "npm run update && npm run format:write && npm run lint && npm run test && npm run coverage && npm run build"
},
"author": "DoradSoft",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.11.1",
"@eslint/compat": "^1.2.2",
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"eslint-plugin-github": "^5.0.2",
"eslint-plugin-jsonc": "^2.18.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.12.0",
"make-coverage-badge": "^1.2.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
}
}