-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "rescript-json-schema",
"version": "6.2.0",
"description": "📄 Typesafe JSON Schema for ReScript",
"keywords": [
"rescript",
"json",
"schema",
"openapi",
"swagger",
"typesafe",
"codegen",
"ajv"
],
"homepage": "https://github.com/DZakh/rescript-json-schema#readme",
"bugs": {
"url": "https://github.com/DZakh/rescript-json-schema/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DZakh/rescript-json-schema.git"
},
"license": "MIT",
"author": "Dmitry Zakharov <dzakh.dev@gmail.com>",
"files": [
"src/**/*.res",
"src/**/*.resi",
"rescript.json"
],
"scripts": {
"coverage": "c8 --reporter=lcov npm test",
"res:build": "rescript build",
"res": "rescript -w",
"test": "ava"
},
"ava": {
"files": [
"__tests__/**/*_test.bs.js"
]
},
"devDependencies": {
"@dzakh/rescript-ava": "3.0.0",
"ava": "5.2.0",
"rescript": "11.1.4",
"rescript-schema": "8.1.0",
"c8": "8.0.1"
},
"peerDependencies": {
"rescript": "11.x",
"rescript-schema": ">=7 <=8.1"
}
}