-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@synapps/core",
"description": "web framework for node",
"version": "1.1.1",
"author": "Alexandre Tiertant <a.tiertant@atlantis-software.net>",
"license": "MIT",
"main": "./index.js",
"repository": "https://github.com/Atlantis-Software/synapps",
"homepage": "https://github.com/Atlantis-Software/synapps",
"keywords": [
"framework",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"scripts": {
"test": "nyc mocha --timeout=10000 --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"bin": {
"synapps": "bin/synapps.js",
"synapps-cluster": "bin/synapps-cluster.js",
"synapps-debug": "bin/synapps-debug.js"
},
"dependencies": {
"asynk": "~0.0.13",
"commander": "~9.2.0",
"formidable": "~2.0.1",
"inquirer": "~8.2.3",
"lodash": "~4.17.21",
"log4js": "~6.2.1",
"mime-types": "~2.1.35",
"moment-timezone": "~0.5.34",
"node-forge": "~1.3.1",
"offshore-validator": "~0.1.0",
"socket.io": "~2.2.0",
"telepathymq": "~0.1.5"
},
"devDependencies": {
"coveralls": "~3.0.2",
"istanbul": "0.4.5",
"mocha": "~5.2.0",
"nyc": "~13.2.0",
"request": "~2.88.0",
"socket.io-client": "~2.2.0"
},
"engines": {
"node": ">= 6"
}
}