bump package version to 2.0.3
[squeep-mystery-box] / package.json
1 {
2 "name": "@squeep/mystery-box",
3 "version": "2.0.3",
4 "description": "Secure a payload in a web-safe format.",
5 "main": "index.js",
6 "scripts": {
7 "coverage": "nyc npm test",
8 "eslint": "eslint index.js lib",
9 "test": "mocha --recursive"
10 },
11 "files": [
12 "lib/**"
13 ],
14 "engines": {
15 "node": "^14 >=14.18.0 || >=15.7.0"
16 },
17 "pre-commit": [
18 "eslint",
19 "coverage"
20 ],
21 "repository": {
22 "type": "git",
23 "url": "https://git.squeep.com/squeep-mystery-box/"
24 },
25 "keywords": [
26 "encryption",
27 "crypto"
28 ],
29 "author": "Justin Wind <jwind-npm@squeep.com>",
30 "license": "ISC",
31 "devDependencies": {
32 "@squeep/eslint-config": "^1",
33 "eslint": "^9",
34 "mocha": "^10",
35 "nyc": "^15",
36 "pre-commit": "^1",
37 "sinon": "^17"
38 }
39 }