-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "grunt-baseline",
"description": "Grunt plugin for benchmarking node.js modules that allows performance to be compared to an established baseline.",
"version": "0.1.7",
"author": {
"name": "Artifact Health, LLC",
"url": "http://www.artifacthealth.com"
},
"repository": {
"type": "git",
"url": "https://github.com/artifacthealth/grunt-baseline.git"
},
"licenses": [
{
"type": "MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"main": "tasks/baseline.js",
"scripts": {
"test": "grunt"
},
"dependencies": {
"baseline": "^0.1.8"
},
"devDependencies": {
"chai": "^1.9.2",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-mocha-test": "^0.12.2",
"grunt-typescript": "0.6.1",
"mocha": "^2.0.1",
"typescript": "1.4.1"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin",
"performance",
"baseline",
"benchmark",
"compare",
"speed"
]
}