potentially serve static files with static headers
[squeep-api-dingus] / package.json
1 {
2 "name": "@squeep/api-dingus",
3 "version": "1.1.0",
4 "description": "A minimal API server framework",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc --all npm test",
8 "eslint": "eslint index.js lib",
9 "test": "mocha --recursive"
10 },
11 "pre-commit": [
12 "coverage"
13 ],
14 "engines": {
15 "node": ">=12"
16 },
17 "repository": {
18 "type": "git",
19 "url": "https://git.squeep.com/squeep-api-dingus/"
20 },
21 "author": "Justin Wind <jwind-npm@squeep.com>",
22 "license": "ISC",
23 "dependencies": {
24 "mime-db": "^1.49.0",
25 "uuid": "^8.3.2"
26 },
27 "devDependencies": {
28 "eslint": "^7.32.0",
29 "eslint-plugin-node": "^11.1.0",
30 "eslint-plugin-security": "^1.4.0",
31 "eslint-plugin-sonarjs": "^0.9.1",
32 "mocha": "^9.0.3",
33 "nyc": "^15.1.0",
34 "pre-commit": "^1.2.2",
35 "sinon": "^11.1.2"
36 }
37 }