forked from netlify/build-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.12 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "netlify-plugin-example",
"version": "0.0.1",
"description": "Netlify Build plugin - {{description}}",
"type": "module",
"exports": "./src/index.js",
"main": "./src/index.js",
"files": [
"src/**/*.js",
"src/**/*.json",
"src/**/*.sh",
"src/**/*.html",
"src/**/*.ejs",
"manifest.yml"
],
"scripts": {
"init": "npm install --loglevel error --no-audit --no-fund && node init/bin.js",
"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}/**/*.{cjs,mjs,js}\"",
"prettier": "prettier --ignore-path .gitignore --write --loglevel warn \"{.github,src,init}/**/*.{cjs,mjs,js,md,yml,json}\" \"*.{cjs,mjs,js,md,yml,json}\"",
"ava": "cross-env FORCE_COLOR=1 ava --verbose",
"release": "release-it"
},
"keywords": [
"netlify-plugin",
"netlify"
],
"author": "{{author}} <{{email}}>",
"license": "{{license}}",
"repository": "{{repo}}",
"directories": {
"lib": "src",
"test": "test"
},
"devDependencies": {
"@netlify/build": "^26.5.3",
"ava": "^4.0.0",
"chalk": "^5.0.0",
"cpy": "^9.0.0",
"cross-env": "^7.0.2",
"del": "^6.0.0",
"email-validator": "^2.0.4",
"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": "^4.0.0",
"execa": "^6.0.0",
"fast-glob": "^3.2.4",
"filter-obj": "^3.0.0",
"fuzzy": "^0.1.3",
"git-remote-origin-url": "^4.0.0",
"inquirer": "^8.0.0",
"inquirer-autocomplete-prompt": "^2.0.0",
"netlify-cli": "^9.16.2",
"omit.js": "^2.0.2",
"prettier": "^2.1.2",
"release-it": "^15.0.0",
"semver": "^7.3.2",
"spdx-license-list": "^6.3.0",
"strip-ansi": "^7.0.0",
"username": "^6.0.0",
"yargs": "^17.0.0"
},
"engines": {
"node": "^14.14.0 || >=16.0.0"
},
"ava": {
"verbose": true,
"timeout": "100s",
"environmentVariables": {
"FORCE_COLOR": "1"
}
}
}