-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "@aeropress/server",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "NODE_ENV=test ospec **/tests/**/*Test.bs.js"
},
"keywords": [
"BuckleScript",
"ReasonML",
"node",
"server",
"framework"
],
"author": "Gilbert",
"license": "MIT",
"devDependencies": {
"bs-ospec": "^1.0.0",
"bs-platform": "^3.1.4",
"glob": "^7.1.2",
"mock-http-server": "github:rationaljs/node-mock-http-server#9f6e8af",
"ospec": "^2.1.0"
},
"description": "ReasonML Node server framework",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/RationalJS/aeropress.git"
},
"bugs": {
"url": "https://github.com/RationalJS/aeropress/issues"
},
"homepage": "https://github.com/RationalJS/aeropress#readme",
"dependencies": {
"bs-node": "github:reasonml-community/bs-node",
"filed": "github:RationalJS/filed",
"reason-future": "^2.2.1"
},
"optionalDependencies": {
"cookie": "^0.3.1",
"pour-css": "^1.2.1"
}
}