-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "rescript-rest",
"version": "1.1.0",
"description": "😴 ReScript RPC-like client, contract, and server implementation for a pure REST API",
"keywords": [
"rest",
"api",
"contract",
"http",
"fetch",
"rescript",
"rescript-schema"
],
"homepage": "https://github.com/DZakh/rescript-rest#readme",
"bugs": {
"url": "https://github.com/DZakh/rescript-rest/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DZakh/rescript-rest.git"
},
"license": "MIT",
"author": "Dmitry Zakharov <dzakh.dev@gmail.com>",
"scripts": {
"coverage": "c8 --reporter=lcov npm test",
"integration": "node ./__tests__/IntegrationTest.res.js",
"res": "rescript -w",
"res:build": "rescript",
"res:clean": "rescript clean",
"test": "ava"
},
"ava": {
"files": [
"__tests__/**/*_test.res.js"
]
},
"dependencies": {
"rescript-json-schema": "^7.0.0",
"rescript-openapi": "^0.4.0"
},
"devDependencies": {
"@dzakh/rescript-ava": "3.1.0",
"@fastify/swagger": "9.2.0",
"@scalar/fastify-api-reference": "1.25.60",
"ava": "6.2.0",
"c8": "10.1.2",
"fastify": "5.1.0",
"rescript": "11.1.4",
"rescript-schema": "9.0.1"
},
"peerDependencies": {
"@fastify/swagger": "9.x",
"@scalar/fastify-api-reference": "^1.25.60",
"fastify": "5.x",
"rescript": "11.x",
"rescript-schema": "^9.0.0"
},
"peerDependenciesMeta": {
"fastify": {
"optional": true
},
"@fastify/swagger": {
"optional": true
},
"@scalar/fastify-api-reference": {
"optional": true
}
}
}