-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 845 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 845 Bytes
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
{
"name": "amp-validator",
"version": "1.0.0",
"description": "Serverless AMP Validator Service",
"main": "handler.js",
"dependencies": {
"amphtml-validator": "^1.0.35",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"scripts": {
"test": "$(npm bin)/xo && $(npm bin)/ava -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uncompiled/amp-validator.git"
},
"keywords": [
"AMP",
"AMPHTML",
"validator",
"serverless"
],
"author": "Chris Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/uncompiled/amp-validator/issues"
},
"homepage": "https://github.com/uncompiled/amp-validator#readme",
"xo": {
"space": 2,
"esnext": true,
"semicolon": false
},
"devDependencies": {
"ava": "^2.4.0",
"xo": "^0.25.3"
}
}