forked from jsperf/jsperf.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "jsperf.com",
"version": "2.0.0",
"description": "jsPerf aims to provide an easy way to create and share test cases, comparing the performance of different JavaScript snippets by running benchmarks",
"main": "index.js",
"scripts": {
"clean": "rm npm-debug.log lcov.info coverage.html",
"lint": "lab -d -L",
"setup": "node setup",
"start": "node server.js",
"test": "lab -t 100 -c -L -r lcov -o lcov.info -r console -o stdout -r html -o coverage.html",
"watch": "nodemon --ext js,hbs server.js"
},
"repository": {
"type": "git",
"url": "git@github.com:jsperf/jsperf.com.git"
},
"keywords": [
"jsperf"
],
"contributors": [
"Max Beatty"
],
"bugs": {
"url": "https://github.com/jsperf/jsperf.com/issues"
},
"homepage": "https://github.com/jsperf/jsperf.com",
"dependencies": {
"@mathias/benchmark.js-wrapper-jsperf": "^1.0.0",
"bell": "^3.0.0",
"blipp": "^2.0.1",
"boom": "^2.8.0",
"confidence": "^1.0.0",
"debug": "^2.2.0",
"dotenv": "^0.5.1",
"glue": "^2.0.0",
"good": "^5.1.2",
"good-console": "^4.1.0",
"handlebars": "^3.0.0",
"hapi": "^8.2.0",
"hapi-auth-cookie": "^3.0.1",
"highlight.js": "^8.7.0",
"joi": "^5.1.0",
"lodash": "^3.3.1",
"marked": "^0.3.4",
"mysql": "^2.5.5",
"visionary": "^2.0.0",
"yar": "^3.0.3"
},
"devDependencies": {
"code": "^1.4.1",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"lab": "^5.11.1",
"nodemon": "^1.3.7",
"prompt": "^0.2.14",
"proxyquire": "^1.4.0",
"sinon": "^1.15.4"
}
}