bump package version to 2.0.0
[squeep-test-helper] / package.json
1 {
2 "name": "@squeep/test-helper",
3 "version": "1.0.3",
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 "@squeep/eslint-config": "^1",
25 "eslint": "^9",
26 "mocha": "^10",
27 "nyc": "^15",
28 "pre-commit": "^1",
29 "sinon": "^17"
30 }
31 }