forked from GoogleChromeLabs/psi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 831 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 831 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
40
41
42
43
44
{
"name": "psi",
"version": "0.0.3",
"main": "index.js",
"description": "PageSpeed Insights for Node",
"homepage": "http://github.com/addyosmani/psi",
"bugs": "https://github.com/addyosmani/psi/issues",
"author": {
"name": "Addy Osmani",
"email": "addyosmani@gmail.com",
"url": "addyosmani.com"
},
"bin": {
"psi": "cli.js"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/addyosmani/psi"
},
"license": "Apache 2",
"scripts": {
"test": "mocha"
},
"files": [
"index.js",
"output.js",
"cli.js"
],
"keywords": [
"pagespeed",
"insights"
],
"dependencies": {
"minimist": "^0.1.0",
"request": "^2.36.0",
"gpagespeed": "0.0.6"
},
"devDependencies": {
"mocha": "^1.20.1"
}
}