generated from netlify/build-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.76 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-plugin-11ty",
"version": "1.4.0",
"description": "A plugin to make building with Eleventy and Netlify a joy!",
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"files": [
"src/**/*.js",
"src/**/*.json",
"src/**/*.sh",
"src/**/*.html",
"src/**/*.ejs",
"manifest.yml"
],
"keywords": [
"netlify-plugin",
"netlify",
"11ty",
"eleventy"
],
"author": {
"name": "Aravind Reddy Voggu",
"email": "aravind.reddy@iiitb.org",
"url": "https://www.avoggu.com"
},
"license": "MIT",
"repository": "https://github.com/zeroby0/netlify-plugin-11ty",
"bugs": {
"url": "https://github.com/zeroby0/netlify-plugin-11ty/issues"
},
"homepage": "https://github.com/zeroby0/netlify-plugin-11ty#readme",
"directories": {
"lib": "src",
"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}\"",
"ava": "cross-env FORCE_COLOR=1 ava --verbose",
"release": "release-it"
},
"devDependencies": {
"@netlify/build": "^15.11.0",
"ava": "^3.13.0",
"cross-env": "^7.0.2",
"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",
"execa": "^5.0.0",
"netlify-cli": "^4.1.18",
"prettier": "^2.1.2",
"release-it": "^14.0.3"
}
}