-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 805 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 805 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
{
"name": "relude",
"description": "Alternative standard library (prelude) for ReasonML",
"homepage": "https://github.com/reazen/relude",
"bugs": "https://github.com/reazen/relude/issues",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/reazen/relude.git"
},
"scripts": {
"test": "jest",
"docs": "docsify serve ./docs"
},
"keywords": [
"ReasonML",
"Melange",
"Utility",
"Prelude",
"Standard Library"
],
"author": "",
"license": "MIT",
"devDependencies": {
"jest": "^26.5.2",
"docsify-cli": "~4.4.0"
},
"jest": {
"verbose": false,
"testMatch": [
"<rootDir>/_build/default/__tests__/output/**/*_test.[jt]s?(x)",
"<rootDir>/_build/default/__tests__/output/**/test_*.js"
]
}
}