-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "hearthjs",
"version": "4.1.2",
"description": "A NodeJS server framework to build fast Rest API",
"main": "lib/index.js",
"bin": "bin/hearthjs",
"scripts": {
"test-debug": "NODE_ENV=test DEBUG=hearthjs ./node_modules/mocha/bin/mocha test -b --watch",
"nyc": "NODE_ENV=test; nyc mocha test -b",
"test": "NODE_ENV=test; mocha test -b"
},
"repository": {
"type": "git",
"url": "git@gitlab.fdc.ovh:devDobby/hearthjs.git"
},
"author": "Maxime Magné",
"license": "ISC",
"dependencies": {
"commander": "=6.2.0",
"cookie-parser": "=1.4.4",
"debug": "=4.1.1",
"diff": "=4.0.1",
"express": "=4.16.4",
"mocha": "=6.0.2",
"moment": "=2.24.0",
"nanoid": "=2.1.1",
"node-cron": "=2.0.3",
"pg": "=8.4.2",
"request": "=2.88.2",
"socket.io": "=4.4.1"
},
"devDependencies": {
"assert": "=1.4.1",
"eslint": "=5.15.1",
"eslint-config-standard": "=12.0.0",
"eslint-plugin-import": "=2.16.0",
"eslint-plugin-node": "=8.0.1",
"eslint-plugin-promise": "=4.0.1",
"eslint-plugin-standard": "=4.0.0",
"file-mock": "=1.0.0",
"mockdate": "=2.0.5",
"multer": "=1.4.1",
"nyc": "=14.0.0",
"sinon": "=7.5.0",
"suppose": "=0.6.2"
}
}