-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "amp-api",
"version": "1.0.2",
"description": "Warm/Bust/Validate Amp Cache",
"main": "index.js",
"scripts": {
"js-lint-fix": "gulp js-lint-fix",
"test": "gulp test",
"unit-test": "gulp unit-test",
"integration-test": "gulp integration-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastcompany/node-amp-api.git"
},
"keywords": [
"amp",
"validate",
"amp html",
"cache",
"warm",
"api",
"google"
],
"author": "Fast Company",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastcompany/node-amp-api/issues"
},
"homepage": "https://github.com/fastcompany/node-amp-api#readme",
"pre-commit": [
"test"
],
"dependencies": {
"amphtml-validator": "1.0.21",
"bluebird": "3.5.1",
"lodash": "4.17.4",
"node-rsa": "0.4.2",
"request": "2.83.0",
"statuses": "1.4.0",
"urlsafe-base64": "1.0.0",
"validate.js": "0.12.0",
"validator": "9.1.1"
},
"devDependencies": {
"bunyan": "1.8.12",
"bunyan-prettystream": "0.1.3",
"chai": "4.1.2",
"chai-enzyme": "0.8.0",
"codecov": "3.0.0",
"coveralls": "3.0.0",
"cross-env": "5.1.1",
"dotenv": "4.0.0",
"eslint": "4.11.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.7.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-prettier": "2.3.1",
"eslint-plugin-react": "7.4.0",
"glob": "7.1.2",
"gulp": "3.9.1",
"gulp-esdoc": "0.4.1",
"gulp-eslint": "4.0.0",
"gulp-if": "2.0.2",
"gulp-mocha": "4.3.1",
"gulp-util": "3.0.8",
"mocha": "4.0.1",
"mocha.parallel": "0.15.3",
"nyc": "11.3.0",
"plato": "1.7.0",
"pre-commit": "1.2.2",
"prettier": "1.8.2",
"pretty-error": "2.1.1",
"require-dir": "0.3.2",
"run-sequence": "2.2.0",
"sinon": "4.1.2",
"sinon-chai": "2.14.0",
"type-detect": "4.0.5"
},
"engines": {
"node": "~8.8.1"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false,
"report-dir": "./docs/server-coverage"
}
}