-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 891 Bytes
/
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
{
"name": "ava-compare",
"version": "0.0.1",
"description": "Compare ava test speed between other popular test framwork.",
"main": "index.js",
"repository": "[email protected]:mrbone/ava-compare.git",
"author": "mrbone <[email protected]>",
"license": "MIT",
"scripts": {
"ava": "ava",
"mocha": "mocha",
"jest": "jest",
"ava:sync": "ava test/ava/avaSync.js",
"ava:async": "ava test/ava/avaAsync.js",
"mocha:sync": "mocha test/mocha/mochaSync.js --reporter dot",
"mocha:async": "mocha test/mocha/mochaAsync.js --reporter dot",
"jest:sync": "jest test/jest/sync.test.js",
"jest:async": "jest test/jest/async.test.js"
},
"ava": {
"files": [
"test/ava/"
]
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^0.18.2",
"chai": "^3.5.0",
"jest": "^19.0.2",
"mocha": "^3.2.0"
}
}