min-dash
Version:
Minimum utility toolbelt
68 lines (67 loc) • 1.9 kB
JSON
{
"name": "min-dash",
"version": "5.0.0",
"description": "Minimum utility toolbelt",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"source": "./lib/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"all": "run-s lint test distro test:types",
"bundle": "rollup -c --bundleConfigAsCjs",
"copy": "cpx 'lib/*.d.ts' dist",
"distro": "run-s copy bundle test:integration test:bundle",
"dev": "npm test -- --watch",
"lint": "eslint .",
"prepublishOnly": "run-s distro",
"test": "mocha -r source-map-support/register --full-trace test/*.spec.js",
"test:bundle": "rollup -c test/bundling/rollup.config.js",
"test:integration": "mocha --full-trace test/integration/*.spec.{cjs,js}",
"test:types": "run-s test:types:*",
"test:types:cjs": "tsc --noEmit",
"test:types:esm": "tsc --noEmit --module node16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/min-dash.git"
},
"keywords": [
"lodash",
"utility",
"tool",
"belt"
],
"author": "bpmn.io <http://bpmn.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bpmn-io/min-dash/issues"
},
"sideEffects": false,
"homepage": "https://github.com/bpmn-io/min-dash",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"chai": "^6.2.1",
"cpx": "^1.5.0",
"eslint": "^9.39.1",
"eslint-plugin-bpmn-io": "^2.2.0",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.1",
"rollup": "^4.53.3",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.1",
"source-map-support": "^0.5.19",
"ts-expect": "^1.3.0",
"typescript": "^5.9.3"
}
}