bump package version to 1.0.1
[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"
26 },
27 "author": "Justin Wind <jwind-npm@squeep.com>",
28 "license": "ISC",
29 "dependencies": {
30 "@squeep/api-dingus": "git+https://git.squeep.com/squeep-api-dingus/#v1.2.8",
31 "@squeep/base64url": "^1.0.5",
32 "uuid": "^9.0.0"
33 },
34 "devDependencies": {
35 "@squeep/test-helper": "git+https://git.squeep.com/squeep-test-helper#v1.0.0",
36 "eslint": "^8.24.0",
37 "eslint-plugin-node": "^11.1.0",
38 "eslint-plugin-security": "^1.5.0",
39 "eslint-plugin-sonarjs": "^0.15.0",
40 "html-minifier-lint": "^2.0.0",
41 "mocha": "^10.0.0",
42 "mocha-steps": "^1.3.0",
43 "nyc": "^15.1.0",
44 "pre-commit": "^1.2.2",
45 "sinon": "^14.0.0"
46 }
47 }