-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"name": "acomics-crop",
"repository": "[email protected]:mr9d/acomics-crop.git",
"version": "1.2.2",
"description": "Acomics crop and resize library written in TypeScript",
"main": "dist/bundle.js",
"scripts": {
"clean": "rm -rf dist",
"test": "echo No tests yet",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**",
"build": "webpack --config webpack.config.js",
"preversion": "npm run lint && npm run test && npm run clean && npm run build",
"version": "node release && git add .",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch"
},
"author": {
"name": "Aleksandr Kozlov",
"email": "[email protected]",
"url": "https://github.com/mr9d"
},
"contributors": [
"Dmitry Dostovalov",
"Andrey Pashkin"
],
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.2.0",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"html-loader": "^5.0.0",
"mini-css-extract-plugin": "^2.9.0",
"sri": "^1.1.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}