forked from rikimasan/bs-luxon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·54 lines (54 loc) · 1.38 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "bs-luxon",
"description": "Bucklescript bindings for Luxon, written in Reason.",
"version": "0.3.0",
"keywords": [
"BuckleScript",
"reason",
"reasonml",
"luxon",
"date",
"time"
],
"author": "David Gomes <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/davidgomes/bs-luxon/issues",
"homepage": "https://github.com/davidgomes/bs-luxon",
"repository": {
"type": "git",
"url": "git+https://github.com/davidgomes/bs-luxon"
},
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"example": "node example/demo.bs.js",
"test": "jest",
"test:watch": "onchange -i -k '**/*.re' -- run-s build test",
"clean": "bsb -clean-world"
},
"devDependencies": {
"jest": "^26.5.2",
"@testing-library/jest-dom": "^5.10.0",
"luxon": "^1.10.0"
},
"peerDependencies": {
"luxon": "^1.10.0"
},
"directories": {
"test": "tests"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"_build",
"_opam",
".output.mobjs"
],
"coveragePathIgnorePatterns": [
"./tests/output/tests"
],
"testMatch": [
"**/tests/output/tests/**/*.js"
]
}
}