forked from macbre/phantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.01 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
{
"name": "phantomas",
"version": "1.13.0",
"author": "macbre <[email protected]> (http://macbre.net)",
"description": "PhantomJS-based web performance metrics collector",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/macbre/phantomas.git"
},
"keywords": [
"high performance web sites",
"metrics",
"monitoring",
"phantomas",
"phantomjs",
"web development",
"webperf"
],
"license": "BSD",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"analyze-css": "0.10.x",
"ansicolors": "~0.3.2",
"ansistyles": "~0.1.0",
"ascii-table": "0.0.8",
"async": "^1.2.0",
"csv-string": "^2.3.0",
"debug": "^2.2.0",
"elasticsearch": "^4.1.0",
"glob": "^5.0.10",
"http-server": "^0.8.0",
"js-yaml": "^3.1.0",
"node-statsd": "0.1.1",
"node-uuid": "~1.4.1",
"optimist": "0.6.x",
"phantomjs": "^1.9.15",
"phantomjs2": "macbre/phantomjs2-npm#version-2.0.1",
"progress": "~1.1.4",
"q": "^1.4.1",
"slimerjs": "^0.9.5",
"tap": "^0.7.1",
"tap-eater": ">=0.0.1",
"travis-fold": ">=0.1.2"
},
"devDependencies": {
"glob": "^4.3.1",
"http-server": "^0.7.2",
"js-beautify": "^1.5.4",
"jshint": "^2.5.10",
"mockery": "^1.4.0",
"vows": "^0.7.0"
},
"optionalDependencies": {},
"bin": "./bin/phantomas.js",
"preferGlobal": true,
"scripts": {
"test": "PHANTOMAS_ENGINE=webkit vows --spec && PHANTOMAS_ENGINE=webkit2 vows --spec",
"unit-test": "vows test/modules/*-test.js --spec",
"lint": "jshint --verbose core/ modules/ scripts/ test/*.js test/*/*-test.js lib/*.js lib/metadata/*.js reporters/ examples/",
"beautify": "js-beautify -r bin/phantomas.js core/*.js examples/*.js extensions/*/*.js lib/*.js lib/engines/*.js lib/metadata/*.js modules/*/*.js reporters/*.js scripts/*.js test/*.js test/*/*.js",
"metadata": "DEBUG=* node lib/metadata/generate.js"
},
"jshintConfig": {
"node": true,
"-W020": false,
"-W030": false
}
}