generated from aquaticone/esm-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "png2svg-node",
"version": "0.1.0",
"main": "index.js",
"author": "aquatic <[email protected]>",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"convert": "node ./index.js",
"lint": "eslint ./index.js --fix",
"format": "prettier --write .",
"prepare": "husky install",
"release": "standard-version",
"release:major": "standard-version --release-as major"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@commitlint/config-conventional": "^17.0.3",
"commitlint": "^17.0.3",
"eslint": "^8.21.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"standard-version": "^9.5.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,md}": [
"prettier -w"
]
},
"dependencies": {
"canvas": "^2.9.3",
"readdirp": "^3.6.0",
"sharp": "^0.30.7",
"svgo": "^2.8.0",
"yargs": "^17.5.1"
}
}