-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.69 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "test-adserver",
"version": "1.6.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 ([email protected])",
"contributors": [
"Nicholas Frederiksen <[email protected]> (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": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chai-match-pattern": "^1.2.0",
"dotenv": "^8.2.0",
"dotenv-vars": "^2.1.0",
"fast-xml-parser": "^3.21.1",
"fastify": "^3.14.2",
"fastify-autoload": "^3.7.1",
"fastify-cli": "^2.9.1",
"fastify-cors": "^5.2.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.1",
"fastify-swagger": "^4.6.0",
"he": "^1.2.0",
"mocha": "^8.4.0",
"node-fetch": "^2.6.1",
"swagger-jsdoc": "^7.0.0-rc.6",
"timestamp-to-seconds": "^0.0.2",
"uuid": "^3.4.0",
"vast-builder": "^4.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"nodemon": "^2.0.7",
"tap": "^15.0.4"
},
"engines": {
"node": ">=12.0.0"
}
}