-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 788 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 788 Bytes
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
{
"name": "bs-mocha",
"version": "1.0.0",
"description": "Bucklescript bindings for mocha",
"repository": {
"type": "git",
"url": "git@github.com:reasonml-community/bs-mocha.git"
},
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"start": "bsb -make-world -w",
"test": "./node_modules/.bin/mocha lib/js/test/Test_*"
},
"homepage": "https://github.com/reasonml-community/bs-mocha",
"bugs": "https://github.com/reasonml-community/bs-mocha/issues",
"keywords": [
"BuckleScript",
"reason"
],
"contributors": [
"Hongbo Zhang",
"Risto Stevcev"
],
"license": "MIT",
"devDependencies": {
"bs-platform": "^5.0.0"
},
"dependencies": {
"mocha": "^6.2.0"
}
}