-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.59 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.59 KB
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": "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": ">=24.12.0",
"npm": ">=11.7.0"
},
"scripts": {
"start": "node ./bin/tinyNode.js",
"test": "node --test test/routes/**/*.test.js",
"allTests": "npm run test && npm run E2Etests",
"E2Etests": "node --test test/e2e/**/*.test.js",
"existsTests": "node --test --test-name-pattern=__exists test/routes/**/*.test.js",
"coreTests": "node --test --test-name-pattern=__core test/routes/**/*.test.js",
"functionalTests": "node --test --test-name-pattern=__mock_functions test/routes/**/*.test.js",
"coverage": "c8 --check-coverage --lines 75 --functions 80 --branches 60 --statements 75 --reporter=text --reporter=json --reporter=html node --test test/routes/**/*.test.js",
"e2e:install": "playwright install --with-deps chromium",
"ci:fast": "npm run coreTests && npm run existsTests && npm run functionalTests",
"ci:full": "npm run e2e:install && npm run E2Etests && npm run coverage"
},
"dependencies": {
"cors": "^2.8.5",
"debug": "~4.4.3",
"dotenv": "^17.2.3",
"envfile": "^7.1.0",
"express": "^5.2.1",
"morgan": "~1.10.1"
},
"devDependencies": {
"c8": "^10.1.3",
"playwright": "^1.54.2",
"supertest": "^7.1.4"
}
}