-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "gatsby-plugin-html2amp",
"version": "1.4.2",
"description": "Gatsby plugin to generate AMP(Accelerated Mobile Pages) from HTMl",
"main": "index.js",
"scripts": {
"lint": "eslint *.js",
"lint:fix": "eslint *.js --fix",
"test": "npm run lint"
},
"engines": {
"node": ">= 8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomoyukikashiro/gatsby-plugin-html2amp.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"amp"
],
"author": "Tomoyuki Kashiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomoyukikashiro/gatsby-plugin-html2amp/issues"
},
"homepage": "https://github.com/tomoyukikashiro/gatsby-plugin-html2amp#readme",
"dependencies": {
"fs-extra": "^9.0.0",
"globby": "^11.0.0",
"html2amp": "^1.4.2",
"slash": "^3.0.0"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0"
}
}