36a8a948775788f3de68720cc3c828337d364b7d
[squeep-resource-authentication-module] / package.json
1 {
2 "name": "@squeep/resource-authentication-module",
3 "version": "1.0.0",
4 "description": "Wrangles authentication for resource servers; intended for use in Squeep Framework Applications.",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc npm test",
8 "coverage-check": "nyc check-coverage",
9 "eslint": "eslint *.js lib",
10 "test": "mocha --recursive"
11 },
12 "pre-commit": [
13 "eslint",
14 "coverage",
15 "coverage-check"
16 ],
17 "repository": {
18 "type": "git",
19 "url": "https://git.squeep.com/squeep-resource-authentication-module"
20 },
21 "keywords": [
22 "authentication"
23 ],
24 "engines": {
25 "node": "^14 >=14.18 || >=15.7"
26 },
27 "author": "Justin Wind <jwind-npm@squeep.com>",
28 "license": "ISC",
29 "dependencies": {
30 "@squeep/api-dingus": "v2.0.0",
31 "uuid": "^9.0.0"
32 },
33 "devDependencies": {
34 "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v1.0.0",
35 "eslint": "^8.48.0",
36 "eslint-plugin-node": "^11.1.0",
37 "eslint-plugin-security": "^1.7.1",
38 "eslint-plugin-sonarjs": "^0.21.0",
39 "html-minifier-lint": "^2.0.0",
40 "mocha": "^10.2.0",
41 "mocha-steps": "^1.3.0",
42 "nyc": "^15.1.0",
43 "pre-commit": "^1.2.2",
44 "sinon": "^15.2.0"
45 }
46 }