generated from netlify/build-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "netlify-plugin-identity-sso",
"version": "0.0.1",
"description": "Netlify Build plugin - Protect a site with SSO via identity",
"main": "src/index.js",
"files": [
"src",
"static",
"manifest.yml",
"!*~"
],
"keywords": [
"netlify-plugin",
"netlify"
],
"author": "Marcus Weiner <[email protected]>",
"license": "MIT",
"repository": "mraerino/build-plugin-identity-sso",
"directories": {
"lib": "src",
"test": "test"
},
"engines": {
"node": ">=11.14.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}\"",
"ava": "cross-env FORCE_COLOR=1 ava --verbose",
"release": "release-it"
},
"dependencies": {
"@iarna/toml": "^2.2.5"
},
"devDependencies": {
"@netlify/build": "^15.11.2",
"ava": "^3.15.0",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^5.1.1",
"netlify-cli": "^4.2.1",
"prettier": "^2.3.2",
"release-it": "^14.10.0"
}
}