forked from peter-neumann-dev/responsive-image-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "responsive-image-linter",
"description": "A Chrome extension to test your responsive images",
"version": "1.0.1",
"author": "Peter Neumann",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/peter-neumann-dev/responsive-image-linter.git"
},
"bugs": {
"url": "https://github.com/peter-neumann-dev/responsive-image-linter/issues"
},
"homepage": "https://github.com/peter-neumann-dev/responsive-image-linter#readme",
"engines": {
"node": "^18"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"build:release": "rollup -c --environment BUILD:production",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint 'src/**/*.js'"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@types/chrome": "^0.0.233",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"rollup": "^3.20.7",
"rollup-plugin-chrome-extension": "^3.6.12",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-zip": "^1.0.3"
}
}