forked from tomoyukikashiro/html2amp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "html2amp",
"version": "1.0.0",
"description": "Simple converter from HTML into AMP(Accelerated Mobile Pages)",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test lib",
"test": "npm run lint && NODE_ENV=test jest --testEnvironment=node test"
},
"engines": {
"node": ">= 8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomoyukikashiro/html2amp.git"
},
"keywords": [
"html",
"amp"
],
"author": "Tomoyuki Kashiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomoyukikashiro/html2amp/issues"
},
"homepage": "https://github.com/tomoyukikashiro/html2amp#readme",
"dependencies": {
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.2",
"clean-css": "^4.2.1",
"data-uri-to-buffer": "^2.0.0",
"image-size": "^0.7.0"
},
"devDependencies": {
"amphtml-validator": "1.0.23",
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"jest": "24.8.0"
}
}