forked from rikimasan/bs-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "bs-express",
"version": "1.0.2",
"description": "Express bindings in Reason",
"main": "index.js",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"@glennsl/bs-json": "^5.0.2",
"bs-platform": "^8.4.2",
"husky": "^1.0.0-rc.13"
},
"scripts": {
"build": "bsb -make-world",
"start": "npm run-script build && node lib/js/example/Index.js",
"watch-run": "nodemon lib/js/example/",
"watch": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "cd tests && ./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reasonml-community/bs-express.git"
},
"keywords": [
"reasonml",
"bucklescript",
"expressjs",
"web",
"server",
"nodejs"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reasonml-community/bs-express/issues"
},
"homepage": "https://github.com/reasonml-community/bs-express#readme",
"rebel": {},
"husky": {
"hooks": {}
}
}