67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "min-dom",
|
|
"version": "4.1.0",
|
|
"description": "A minimal dom utility toolbelt",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"all": "run-s lint test test:types distro",
|
|
"bundle": "rollup -c",
|
|
"distro": "run-s bundle test:integration",
|
|
"lint": "eslint .",
|
|
"prepare": "run-s distro",
|
|
"test": "karma start",
|
|
"test:types": "tsc --project test/integration --pretty --noEmit",
|
|
"test:integration": "karma start test/integration/karma.conf.js"
|
|
},
|
|
"keywords": [
|
|
"dom",
|
|
"util",
|
|
"utility",
|
|
"minimal",
|
|
"event",
|
|
"query",
|
|
"jquery",
|
|
"component"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bpmn-io/min-dom"
|
|
},
|
|
"author": "bpmn.io",
|
|
"license": "MIT",
|
|
"sideEffects": false,
|
|
"dependencies": {
|
|
"component-event": "^0.2.1",
|
|
"domify": "^1.4.1",
|
|
"min-dash": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-babel": "^5.3.1",
|
|
"@rollup/plugin-commonjs": "^22.0.2",
|
|
"@rollup/plugin-node-resolve": "^14.1.0",
|
|
"@types/chai": "^4.3.3",
|
|
"@types/mocha": "^9.1.1",
|
|
"chai": "^4.3.6",
|
|
"eslint": "^8.23.1",
|
|
"eslint-plugin-bpmn-io": "^0.15.1",
|
|
"karma": "^6.4.0",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^3.1.1",
|
|
"karma-firefox-launcher": "^2.1.2",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-webpack": "^5.0.0",
|
|
"mocha": "^10.0.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"puppeteer": "^17.1.3",
|
|
"rollup": "^2.79.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"typescript": "^4.8.3",
|
|
"webpack": "^5.74.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|