bump package version to 1.0.2
[squeep-test-helper] / package.json
1 {
2 "name": "@squeep/test-helper",
3 "version": "1.0.0",
4 "description": "Common modules and helpers for Squeep Framework Applications unit testing.",
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 "repository": {
13 "type": "git",
14 "url": "https://git.squeep.com/squeep-test-helper/"
15 },
16 "author": "Justin Wind <jwind-npm@squeep.com>",
17 "license": "ISC",
18 "pre-commit": [
19 "eslint",
20 "coverage",
21 "coverage-check"
22 ],
23 "dependencies": {
24 "eslint": "^8.23.1",
25 "eslint-plugin-node": "^11.1.0",
26 "eslint-plugin-security": "^1.5.0",
27 "eslint-plugin-sonarjs": "^0.15.0",
28 "mocha": "^10.0.0",
29 "nyc": "^15.1.0",
30 "pre-commit": "^1.2.2",
31 "sinon": "^14.0.0"
32 }
33 }