-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "test-adserver",
"version": "1.7.2",
"description": "An adserver implementation to verify ad tracking implementations",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --timeout 10000 --bail",
"dev": "nodemon -L server.js",
"start": "node server.js",
"start-fastify": "fastify start -l info app.js",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/test-adserver.git"
},
"keywords": [],
"author": "Eyevinn Technology AB (work@eyevinn.se)",
"contributors": [
"Nicholas Frederiksen <nicholas.frederiksen@eyevinn.se> (Eyevinn Technology AB)"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Eyevinn/test-adserver/issues"
},
"homepage": "https://github.com/Eyevinn/test-adserver#readme",
"dependencies": {
"@fastify/cors": "^10.1.0",
"@fastify/static": "^7.0.4",
"@fastify/swagger": "^9.5.2",
"chai": "^4.5.0",
"chai-http": "^4.4.0",
"chai-match-pattern": "^1.3.0",
"dotenv": "^8.6.0",
"dotenv-vars": "^2.1.0",
"fast-xml-parser": "^4.5.3",
"fastify": "^5.6.1",
"fastify-autoload": "^3.12.0",
"fastify-cli": "^7.4.0",
"fastify-cors": "^5.2.0",
"fastify-plugin": "^3.0.1",
"fastify-sensible": "^3.1.2",
"fastify-swagger": "^4.17.1",
"he": "^1.2.0",
"mocha": "^10.8.2",
"node-fetch": "^2.7.0",
"swagger-jsdoc": "^7.0.0-rc.6",
"timestamp-to-seconds": "^0.0.2",
"uuid": "^9.0.1",
"vast-builder": "^4.0.1",
"winston": "^3.18.3"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^12.1.4",
"nodemon": "^3.1.10",
"superagent": "^6.1.0",
"tap": "^18.8.0"
},
"engines": {
"node": ">=18.0.0"
}
}