67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "@riotjs/dom-bindings",
|
|
"version": "6.0.4",
|
|
"description": "Riot.js DOM bindings",
|
|
"main": "dist/umd.dom-bindings.js",
|
|
"jsnext:main": "src/index.js",
|
|
"module": "src/index.js",
|
|
"types": "./dom-bindings.d.ts",
|
|
"scripts": {
|
|
"lint": "eslint src/ test/ rollup.config.js",
|
|
"cov": "nyc report --reporter=text-lcov | coveralls",
|
|
"cov-html": "nyc report --reporter=html",
|
|
"build": "rollup -c",
|
|
"pretest": "npm run build",
|
|
"postest": "npm run cov-html",
|
|
"bench": "node benchmarks",
|
|
"test": "npm run lint && nyc mocha -r esm test/index.js && npm run test-typing",
|
|
"test-typing": "tsc -p test",
|
|
"test-debug": "mocha -r esm --inspect --inspect-brk test/index.js",
|
|
"prepublishOnly": "npm test"
|
|
},
|
|
"files": [
|
|
"dom-bindings.d.ts",
|
|
"src",
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/GianlucaGuarini/dom-bindings.git"
|
|
},
|
|
"keywords": [
|
|
"riot",
|
|
"dom-bindings"
|
|
],
|
|
"nyc": {
|
|
"include": "src",
|
|
"exclude": "src/util/udomdiff.js"
|
|
},
|
|
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (http://gianlucaguarini.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/GianlucaGuarini/dom-bindings/issues"
|
|
},
|
|
"homepage": "https://github.com/GianlucaGuarini/dom-bindings#readme",
|
|
"devDependencies": {
|
|
"benchmark": "^2.1.4",
|
|
"chai": "^4.3.6",
|
|
"coveralls": "^3.1.1",
|
|
"eslint": "^8.22.0",
|
|
"eslint-config-riot": "^3.0.0",
|
|
"esm": "^3.2.25",
|
|
"jsdom": "^20.0.0",
|
|
"jsdom-global": "3.0.2",
|
|
"mocha": "^8.4.0",
|
|
"nyc": "^15.1.0",
|
|
"rollup": "^2.78.0",
|
|
"rollup-plugin-alias": "^2.2.0",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"sinon": "^14.0.0",
|
|
"sinon-chai": "^3.7.0",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"@riotjs/util": "^2.1.1"
|
|
}
|
|
}
|