-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 982 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
{
"name": "ems-db",
"version": "1.0.0",
"description": "A database module for the Enquiry Management System",
"main": "index.js",
"scripts": {
"test": "jest --verbose"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PTFS-Europe/ems-db.git"
},
"author": "Andrew Isherwood <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/PTFS-Europe/ems-db/issues"
},
"homepage": "https://github.com/PTFS-Europe/ems-db#readme",
"dependencies": {
"db-migrate": "^0.11.6",
"db-migrate-pg": "^1.0.0",
"libsodium-wrappers": "^0.7.8",
"node-postgres": "^0.1.4",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^7.9.0",
"jest": "^25.3.0"
}
}