-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 903 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
{
"name": "referee-custom-assert-with-mocha",
"version": "1.0.0",
"main": "index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/referee-custom-assert-with-mocha.git"
},
"scripts": {
"test:mocha": "mocha -r ./test/assertions/* ./test/*.test.js",
"test:mochify": "mochify ./test/assertions/* ./test/*.test.js",
"test:jest": "jest ./test/*.test.js --setupFiles ./test/assertions/*.js",
"test:jasmine": "jasmine --helper=./test/assertions/* ./test/*.test.js",
"test:tap": "tap ./test/fixture/tap-tests.js",
"test": "npm run test:mocha && npm run test:mochify && npm run test:jest && npm run test:jasmine && npm run test:tap"
},
"devDependencies": {
"@sinonjs/referee": "^5.0.1",
"jasmine": "^3.5.0",
"jest": "^25.1.0",
"mocha": "^7.1.1",
"mochify": "^6.6.0",
"tap": "^14.10.7"
}
}