-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "maven-badges",
"version": "1.0.0",
"description": "A node.js implementation of maven-badges service.",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf dist",
"preinstall": "npm run clean",
"watch": "tsc -w",
"build": "tsc",
"serve": "nodemon --inspect --watch dist/ -d 1 ./dist/main.js",
"test": "npm run build && mocha dist/test --timeout 15000 --exit",
"start": "node ./dist/main.js"
},
"author": "marcin.baraniecki@softwaremill.com",
"license": "Apache-2.0",
"dependencies": {
"@types/redis": "^4.0.11",
"axios": "^1.15.1",
"express": "^5.2.1",
"heroku-logger": "^0.3.3"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/express": "^5.0.6",
"@types/heroku-logger": "^1.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "~25.6.0",
"@types/redis-mock": "^0.17.3",
"@types/supertest": "^7.2.0",
"axios-mock-adapter": "^2.1.0",
"chai": "~6.2.2",
"mocha": "^11.7.5",
"nodemon": "^3.1.14",
"redis-mock": "^0.56.3",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"typescript": "~5.9.3"
}
}