-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 897 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
35
36
37
38
{
"name": "bmocha",
"version": "2.2.1",
"description": "Alternative implementation of mocha",
"keywords": [
"mocha",
"mochajs",
"test",
"testing"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bmocha.git",
"homepage": "https://github.com/bcoin-org/bmocha",
"bugs": {
"url": "https://github.com/bcoin-org/bmocha/issues"
},
"author": "Christopher Jeffrey <[email protected]>",
"main": "./lib/bmocha.js",
"type": "commonjs",
"bin": {
"bmocha": "./bin/bmocha",
"_bmocha": "./bin/_bmocha"
},
"scripts": {
"lint": "eslint bin/* lib/ test/ || exit 0",
"test": "./bin/bmocha test/mocha-test.js",
"test-browser": "./bin/bmocha -H test/mocha-test.js"
},
"devDependencies": {
"bslintrc": "~0.0.3"
},
"engines": {
"node": ">=8.0.0"
},
"browser": {
"./lib/error": "./lib/error-browser.js"
}
}