-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 940 Bytes
/
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": "blockbase",
"version": "1.0.21",
"description": "blockbase MVC node framework project",
"main": "src/app.js",
"scripts": {
"start": "export NODE_ENV=default && node --max_old_space_size=4096 ./src/app.js",
"test": "mocha --exit"
},
"keywords": [
"api",
"mvc",
"framework",
"minimalist",
"orm",
"blockbase",
"es6",
"async",
"await"
],
"bin": {
"blockbase": "./cli/blockbase.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:blacksmithstudio/blockbase.git"
},
"author": "Alexandre Pereira <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^2.15.1",
"config": "^1.26.1",
"fs-extra": "^6.0.1",
"joi": "^13.4.0",
"js-yaml": "^3.13.1",
"junk": "^2.1.0",
"knex": "^0.19.5",
"pg": "^7.8.1"
},
"devDependencies": {
"mocha": "^5.2.0",
"should": "^13.2.1"
}
}