-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "rescript-benchmarkjs",
"version": "1.0.1",
"description": "ReScript bindings to the Benchmark.js library",
"main": "index.js",
"scripts": {
"test": "test",
"start": "npx bsb -make-world -w",
"build": "npx bsb -make-world",
"clean": "npx bsb -clean-world",
"clean-start": "npx bsb -clean-world && npx bsb -make-world && npx bsb -w",
"clean-build": "npx bsb -clean-world && npx bsb -make-world"
},
"repository": {
"type": "git",
"url": "git+https://github.com/austindd/rescript-benchmarkjs.git"
},
"keywords": [
"rescript",
"reason",
"reasonml",
"ocaml",
"benchmark",
"test",
"testing",
"performance",
"micro-benchmark"
],
"author": "Austin Davis",
"license": "MIT",
"bugs": {
"url": "https://github.com/austindd/rescript-benchmarkjs/issues"
},
"homepage": "https://github.com/austindd/rescript-benchmarkjs#readme",
"devDependencies": {
"bs-platform": "^8.4.2"
},
"dependencies": {
"benchmark": "^2.1.4"
}
}