-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
46
47
48
49
50
51
52
53
{
"name": "express-amp",
"version": "1.0.9",
"description": "Express middleware to convert website to Google AMP",
"license": "MIT",
"main": "index.js",
"author": {
"name": "Jordi López",
"email": "[email protected]",
"url": "http://jlopezxs.github.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlopezxs/express-amp.git"
},
"bugs": {
"url": "https://github.com/jlopezxs/express-amp/issues"
},
"keywords": [
"amp",
"express",
"google amp"
],
"scripts": {
"lint": "standard src/**/*.js",
"lint:fix": "standard src/**/*.js --fix",
"example": "npm run build && node example/index",
"build": "rm -rf lib && babel src -d lib --source-maps",
"prerelease": "npm run lint && npm run build",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git add -A && git push -u origin HEAD"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"express": "^4.17.1",
"standard": "^14.1.0",
"swig": "^1.4.2"
},
"engines": {
"node": ">= 0.10"
},
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"ampify": "^0.5.0"
}
}