-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "html-to-amp",
"version": "2.0.2",
"description": "Small module to transform html pages to amp, using [html-to-article-json](https://www.npmjs.com/package/html-to-article-json) & [article-json-to-amp](https://www.npmjs.com/package/article-json-to-amp)",
"scripts": {
"test": "npm prune && nyc ava && semistandard | snazzy",
"prepublish": "mkdir -p dist && babel lib --out-dir dist",
"posttest": "readme package.json --travis > readme.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/html-to-amp.git"
},
"keywords": [
"amp",
"html"
],
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/html-to-amp/issues"
},
"homepage": "https://github.com/micnews/html-to-amp#readme",
"dependencies": {
"article-json-to-amp": "^1.2.0",
"bluebird": "^3.3.1",
"html-to-article-json": "^1.9.1",
"request-image-size": "^1.2.2"
},
"devDependencies": {
"ava": "^0.15.1",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"nyc": "^10.3.2",
"package-json-to-readme": "^1.5.0",
"semistandard": "^9.0.0",
"snazzy": "^4.0.0"
},
"main": "dist/index.js"
}