-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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": "tinynode",
"type": "module",
"version": "0.1.1",
"private": true,
"keywords": [
"rerum",
"nodejs",
"mongodb",
"TinyThings",
"TinyNode"
],
"homepage": "https://tiny.rerum.io",
"license": "CC-BY",
"author": "Research Computing Group <research.computing@slu.edu> (https://slu.edu)",
"repository": "github:CenterForDigitalHumanities/tinyNode",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"start": "node ./bin/tinyNode.js",
"allTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"E2Etests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t __e2e ",
"existsTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t __exists ",
"coreTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t __core ",
"functionalTests": "node --experimental-vm-modules node_modules/jest/bin/jest.js -t __mock_functions "
},
"dependencies": {
"@jest/globals": "^29.7.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"dotenv-expand": "^8.0.1",
"envfile": "^7.1.0",
"express": "^4.18.2",
"http-errors": "~1.6.3",
"jsonld": "^8.3.2",
"morgan": "~1.9.1"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.3"
}
}