mithril-vndb/package.json
dependabot[bot] e5f897f8a2 Bump the normal group across 1 directory with 2 updates
Bumps the normal group with 2 updates in the / directory: [chokidar](https://github.com/paulmillr/chokidar) and [eslint](https://github.com/eslint/eslint).


Updates `chokidar` from 3.2.1 to 4.0.1
- [Release notes](https://github.com/paulmillr/chokidar/releases)
- [Commits](https://github.com/paulmillr/chokidar/compare/3.2.1...4.0.1)

Updates `eslint` from 8.9.0 to 8.57.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.9.0...v8.57.1)

---
updated-dependencies:
- dependency-name: chokidar
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: normal
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: normal
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-25 19:25:21 -07:00

37 lines
1.2 KiB
JSON

{
"name": "mithril",
"version": "2.2.4",
"description": "A framework for building brilliant applications",
"author": "Leo Horie",
"license": "MIT",
"unpkg": "mithril.min.js",
"jsdelivr": "mithril.min.js",
"repository": "github:MithrilJS/mithril.js",
"scripts": {
"watch": "run-p watch:**",
"watch:js": "node scripts/bundler browser.js -output mithril.js -watch",
"build": "run-p build:browser build:min build:stream-min",
"build:browser": "node scripts/bundler browser.js -output mithril.js",
"build:min": "node scripts/bundler browser.js -output mithril.min.js -minify -save",
"build:stream-min": "node scripts/minify-stream",
"cleanup:lint": "rimraf .eslintcache",
"lint": "run-s -cn lint:**",
"lint:js": "eslint . --cache",
"perf": "node performance/test-perf.js",
"pretest": "npm run lint",
"test": "run-s test:js",
"test:js": "ospec",
"cover": "istanbul cover --print both ospec"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chokidar": "^4.0.1",
"eslint": "^8.9.0",
"glob": "^11.0.0",
"istanbul": "^0.4.5",
"npm-run-all": "^4.1.5",
"ospec": "4.2.1",
"rimraf": "^6.0.1",
"terser": "^4.3.4"
}
}