forked from ncthbrt/reason-nact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.35 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
{
"name": "rescript-nact",
"version": "5.0.0",
"description": "let rescript-nact = (node.js, rescript, actors) ⇒ your µ services have never been so typed",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ncthbrt/rescript-nact.git"
},
"author": {
"name": "Nick Cuthbert",
"email": "[email protected]",
"homepage": "https://github.com/ncthbrt"
},
"bugs": {
"url": "https://github.com/ncthbrt/rescript-nact/issues"
},
"scripts": {
"prepare": "husky install",
"postinstall": "rescript build -with-deps",
"build": "rescript build",
"start": "rescript build -w",
"clean": "rescript clean",
"test": "yarn run build && jest",
"prepack": "yarn run clean && yarn run build"
},
"keywords": [
"rescript",
"nact",
"actors",
"actor-model",
"akka",
"akka.net",
"non-blocking",
"actor system",
"erlang",
"event sourcing",
"distributed-systems"
],
"files": [
"src/*.res",
"bsconfig.json",
"README",
"LICENSE"
],
"peerDependencies": {
"rescript": "^9.1.4"
},
"dependencies": {
"nact": "^7.6.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.7.0",
"@glennsl/bs-json": "^5.0.2",
"coveralls": "^3.1.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"rescript": "^9.1.4"
}
}