bump package version to 2.1.1
[squeep-api-dingus] / package.json
1 {
2 "name": "@squeep/api-dingus",
3 "version": "2.1.1",
4 "description": "An API server framework",
5 "main": "index.js",
6 "scripts": {
7 "audit": "npm audit",
8 "coverage": "nyc --all npm test",
9 "coverage-check": "nyc check-coverage",
10 "eslint": "eslint index.js lib test",
11 "test": "mocha --recursive"
12 },
13 "files": [
14 "lib/**"
15 ],
16 "pre-commit": [
17 "audit",
18 "eslint",
19 "coverage",
20 "coverage-check"
21 ],
22 "engines": {
23 "node": ">=14.13.1"
24 },
25 "repository": {
26 "type": "git",
27 "url": "https://git.squeep.com/squeep-api-dingus/"
28 },
29 "author": "Justin Wind <jwind-npm@squeep.com>",
30 "license": "ISC",
31 "dependencies": {
32 "@squeep/log-helper": "^1",
33 "mime-db": "^1.52.0",
34 "uuid": "^9.0.1"
35 },
36 "devDependencies": {
37 "@squeep/eslint-config": "^1",
38 "eslint": "^9",
39 "mocha": "^10",
40 "nyc": "^15",
41 "pre-commit": "^1",
42 "sinon": "^17"
43 }
44 }