-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
64 lines (64 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@netlify/plugins-list",
"version": "6.80.0",
"description": "List of Netlify plugins",
"type": "module",
"exports": "./index.js",
"main": "./index.js",
"files": [
"index.js",
"site/plugins.json"
],
"scripts": {
"prepare": "husky install node_modules/@netlify/eslint-config-node/.husky/",
"prepublishOnly": "npm ci && npm test",
"test": "run-s format test:dev",
"format": "run-s format:check-fix:*",
"format:ci": "run-s format:check:*",
"format:check-fix:lint": "run-e format:check:lint format:fix:lint",
"format:check:lint": "cross-env-shell eslint $npm_package_config_eslint",
"format:fix:lint": "cross-env-shell eslint --fix $npm_package_config_eslint",
"format:check-fix:prettier": "run-e format:check:prettier format:fix:prettier",
"format:check:prettier": "cross-env-shell prettier --check $npm_package_config_prettier",
"format:fix:prettier": "cross-env-shell prettier --write $npm_package_config_prettier",
"test:dev": "ava",
"test:ci": "c8 -r lcovonly -r text -r json ava"
},
"config": {
"eslint": "--ignore-path .gitignore --cache --format=codeframe --max-warnings=0 \"{functions,test,.github}/**/*.{cjs,mjs,js,md,html}\" \"*.{cjs,mjs,js,md,html}\" \".*.{cjs,mjs,js,md,html}\"",
"prettier": "--ignore-path .gitignore --loglevel=warn \"{functions,test,.github}/**/*.{cjs,mjs,js,md,yml,json,html}\" \"*.{cjs,mjs,js,yml,json,html}\" \".*.{cjs,mjs,js,yml,json,html}\" \"!package-lock.json\""
},
"keywords": [
"netlify-plugin",
"netlify"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@netlify/eslint-config-node": "^7.0.1",
"@sanity/client": "^3.3.6",
"@sanity/uuid": "^3.0.1",
"ava": "^6.0.0",
"c8": "^9.0.0",
"deep-equal": "^2.0.5",
"diff": "^5.0.0",
"dotenv": "^16.0.1",
"got": "^11.8.0",
"husky": "^8.0.0",
"is-plain-obj": "^4.0.0",
"node-fetch": "^3.1.1",
"normalize-node-version": "^14.0.0",
"pacote": "^13.0.0",
"semver": "^7.0.0",
"tsx": "^3.9.0",
"upper-case-first": "^2.0.2"
},
"engines": {
"node": "^14.14.0 || >=16.0.0"
},
"ava": {
"timeout": "2m",
"verbose": true,
"workerThreads": false
}
}