-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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": "@serafin/serafin",
"version": "0.1.0-alpha",
"description": "Serafin is an API framework designed to quickly set up a self-descriptive REST API, based upon a functional approach, and written in nodeJS/Typescript",
"contributors": [
{
"name": "Sébastien de Saint Florent"
},
{
"name": "Nicolas Degardin"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serafin-framework/serafin"
},
"main": "lib/index.js",
"dependencies": {
"@serafin/api": "^0.4.0",
"@serafin/pipeline": "^0.11.0",
"@serafin/pipeline-mongodb": "^0.2.4",
"mongodb": "^3.2.4",
"node-uuid": "^1.4.8"
},
"devDependencies": {
"@serafin/gulp-tasks": "git+https://github.com/serafin-labs/gulp-tasks.git",
"@types/mocha": "^2.2.48",
"@types/node": "^10.10.1",
"del": "^2.2.0",
"gulp": "^3.9.1",
"istanbul": "^0.4.5",
"lodash": "^4.17.11",
"merge-stream": "^1.0.0",
"mocha": "^3.5.3",
"remap-istanbul": "^0.7.0",
"typescript": "3.3.4000"
},
"scripts": {
"start": "forever --minUptime 1000 --spinSleepTime 1000 lib/index.js",
"dev": "npm install && node_modules/.bin/gulp build && node_modules/.bin/gulp dev",
"test": "mocha **/*Tests.js"
}
}