-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 KB
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": "@imageengine/netlify",
"version": "1.0.1",
"description": "Netlify Build plugin - Imageengine optimize your images by up to 80% on autopilot for improved SEO, lower bounce rates, better mobile experience, and increased sales",
"type": "module",
"exports": "./src/index.js",
"main": "./src/index.js",
"files": [
"src/**/*.js",
"src/**/*.json",
"src/**/*.sh",
"src/**/*.html",
"src/**/*.ejs",
"manifest.yml"
],
"keywords": [
"netlify-plugin",
"netlify"
],
"author": "akantipudi@loginsoft.com",
"license": "MIT",
"repository": "//github.com/imgeng/netlify-imagengine",
"directories": {
"lib": "src",
"test": "test"
},
"engines": {
"node": ">=16.9.0"
},
"ava": {
"verbose": true,
"timeout": "100s",
"environmentVariables": {
"FORCE_COLOR": "1"
}
},
"scripts": {
"build": "netlify-build",
"test": "pnpm run lint && pnpm run ava",
"lint": "pnpm run eslint && pnpm run prettier",
"eslint": "eslint --ignore-pattern .gitignore --fix --cache --format=codeframe --max-warnings=0 \"{src,init}/**/*.{cjs,mjs,js}\"",
"prettier": "prettier --ignore-path .gitignore --write --loglevel warn \"{.github,src,init}/**/*.{cjs,mjs,js,md,yml,json}\" \"*.{cjs,mjs,js,md,yml,json}\"",
"ava": "cross-env FORCE_COLOR=1 ava --verbose",
"release": "release-it"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@netlify/build": "^30.0.0",
"ava": "^6.0.0",
"cross-env": "^7.0.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-prettier": "^5.0.0",
"execa": "^9.0.0",
"globals": "^16.0.0",
"netlify-cli": "^18.0.0",
"prettier": "^3.0.0",
"release-it": "^18.0.0"
},
"dependencies": {
"@imageengine/imageengine-helpers": "^0.2.1",
"glob": "^11.0.0",
"jsdom": "^26.0.0"
},
"publishConfig": {
"access": "public"
}
}