-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.15 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": "ampl",
"version": "1.1.1",
"description": "ampl converts your markdown files into AMP-compliant html so they can be cached by google for the fastest possible page load",
"main": "lib/ampl.js",
"scripts": {
"dev": "babel-node test",
"test": "./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/tape/bin/tape ./test/",
"watch-build": "babel src -d lib -w",
"build": "babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/ampl.git"
},
"keywords": [
"AMP",
"fast",
"compile",
"Accelerated",
"Mobile",
"Pages",
"Google"
],
"author": "dwyl",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/ampl/issues"
},
"homepage": "https://github.com/dwyl/ampl#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.24.1",
"istanbul": "^0.4.5",
"nock": "^9.4.4",
"tape": "^4.9.1"
},
"dependencies": {
"htmlparser2": "^3.9.2",
"image-size": "^0.6.3",
"remarkable": "^1.7.1"
}
}