bump package version to 2.0.0
[squeep-test-helper] / package.json
1 {
2 "name": "@squeep/test-helper",
3 "version": "2.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 "files": [
13 "lib"
14 ],
15 "repository": {
16 "type": "git",
17 "url": "https://git.squeep.com/squeep-test-helper/"
18 },
19 "author": "Justin Wind <jwind-npm@squeep.com>",
20 "license": "ISC",
21 "pre-commit": [
22 "eslint",
23 "coverage",
24 "coverage-check"
25 ],
26 "devDependencies": {
27 "@squeep/eslint-config": "^1",
28 "eslint": "^9",
29 "mocha": "^10",
30 "nyc": "^15",
31 "pre-commit": "^1",
32 "sinon": "^18"
33 }
34 }