-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 960 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 960 Bytes
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
{
"name": "pryv-bridge-thryve",
"version": "0.0.1",
"private": true,
"description": "Thyve <> Pryv bridge",
"homepage": "https://pryv.com",
"repository": {
"type": "git",
"url": "git://github.com/pryv/bridge-thryve.git"
},
"license": "BSD-3-Clause",
"author": "Pryv <info@pryv.com> (https://pryv.com)",
"main": "src/server.js",
"scripts": {
"license": "source-licenser --config-file .licenser.yml ./",
"start": "node src/server.js",
"start:dev": "nodemon start",
"test": "node_modules/.bin/mocha 'test/**/*.test.js'"
},
"dependencies": {
"better-sqlite3": "^5.4.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"nconf": "^0.10.0",
"node-cron": "^2.0.3",
"should": "^13.2.3",
"superagent": "^5.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"mocha": "^6.2.0",
"nodemon": "^1.19.3",
"source-licenser": "^2.0.5"
},
"engines": {
"node": ">=8.0.0"
}
}