-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "@hyperjumptech/strapi-optimized-image",
"version": "0.0.5",
"description": "Strapi optimized image",
"bugs": {
"url": "https://github.com/hyperjumptech/strapi-optimized-image/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/hyperjumptech/strapi-optimized-image.git"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"keywords": [
"Strapi",
"Image"
],
"author": "@hyperjumptech",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"dynamic-code-analysis": "nyc mocha --require ts-node/register ./index.test.ts",
"format-check": "npm run prettier -- --check",
"format": "npm run prettier -- --write",
"lint": "eslint ./index.ts",
"prettier": "prettier . --ignore-path .gitignore",
"static-code-analysis": "npm run format-check && npm run lint",
"test": "npm run static-code-analysis && npm run dynamic-code-analysis"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.5.0"
}
}