-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 869 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 869 Bytes
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
{
"name": "@sitespeed.io/plugin",
"version": "1.0.2",
"type": "module",
"description": "Plugin base class, use it to create your own plugin",
"exports": "./plugin.js",
"files": [
"plugin.js",
"package.json",
"README.md"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node --test"
},
"keywords": [
"sitespeed.io",
"plugin"
],
"author": "Peter Hedenskog <peter@soulgalore.com>",
"repository": {
"type": "git",
"url": "https://github.com/sitespeedio/plugin.git"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "64.0.0",
"globals": "17.6.0",
"prettier": "3.8.3"
}
}