generated from netlify/build-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "netlify-plugin-pnpm-preinstaller",
"version": "0.0.4",
"description": "Netlify Build plugin - Plugin to install pnpm on netlify",
"files": [
"src/**/*.js",
"bin/**/*.js",
"manifest.yml"
],
"bin": {
"netlify-plugin-pnpm-preinstaller": "bin/npx.js"
},
"keywords": [
"netlify-plugin",
"netlify"
],
"author": "Modfy Inc <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "modfy/netlify-plugin-pnpm-preinstaller"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=12.18.0"
},
"scripts": {
"build": "netlify-build",
"test": "npm run lint && npm run ava",
"lint": "npm run eslint && npm run prettier",
"eslint": "eslint --ignore-path .gitignore --fix --cache --format=codeframe --max-warnings=0 \"{src,init}/**/*.js\"",
"prettier": "prettier --ignore-path .gitignore --write --loglevel warn \"{.github,src,init}/**/*.{js,md,yml,json}\" \"*.{js,md,yml,json}\"",
"release": "release-it"
},
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"netlify-cli": "^3.21.12",
"prettier": "^2.1.2",
"release-it": "^14.0.3"
}
}