-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 905 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 905 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
34
35
36
37
{
"name": "bs-nonempty",
"version": "1.3.0",
"description": "NonEmpty type with Array and List implementations for ReasonML and OCaml",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"test": "npm run clean && npm run build && jest --testMatch '**/test/*.js'"
},
"homepage": "https://github.com/mlms13/bs-nonempty",
"repository": {
"type": "git",
"url": "https://github.com/mlms13/bs-nonempty.git"
},
"bugs": "https://github.com/mlms13/bs-nonempty/issues",
"keywords": [
"reasonml",
"bucklescript",
"nonempty",
"list",
"array"
],
"author": "Michael Martin-Smucker",
"license": "MIT",
"dependencies": {
"bs-abstract": "^0.16.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^4.0.5",
"jest": "^23.5.0"
}
}