-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "html2amp",
"version": "1.4.2",
"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": {
"@ampproject/toolbox-optimizer": "^2.3.0",
"axios": "^0.27.0",
"cheerio": "^1.0.0-rc.2",
"clean-css": "^5.0.0",
"data-uri-to-buffer": "^3.0.0",
"probe-image-size": "^5.0.0"
},
"devDependencies": {
"amphtml-validator": "1.0.35",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"jest": "25.5.4"
}
}