auto-events
Version:
Small Vanilla JS utility for binding events between DOMNode and a simple controller.
66 lines (65 loc) • 1.96 kB
JSON
{
"name": "auto-events",
"version": "1.0.9",
"description": "Small Vanilla JS utility for binding events between DOMNode and a simple controller.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src test",
"build": "npm run bundles && uglifyjs dist/index.js -m -o dist/index.min.js",
"bundles": "rollup -c",
"watch": "rollup -c -w",
"pretest": "npm run lint",
"test": "jest --forceExit test",
"cover": "jest --forceExit --coverage test",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"prebuild": "npm test",
"prepublish": "npm run build",
"precommit": "npm run prebuild",
"prepush": "npm test",
"commitmsg": "validate-commit-msg",
"cmtz": "git-cz",
"release": "standard-version"
},
"keywords": [
"dom-events",
"bind",
"controller"
],
"author": "Gilles Coomans",
"license": "MIT",
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.14.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-unassert": "^2.1.2",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.14.0",
"babelrc-rollup": "^3.0.0",
"commitizen": "^2.9.6",
"coveralls": "^2.13.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.3",
"jest": "^22.0.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^3.2.2",
"standard-version": "^4.0.0",
"uglify-js": "^3.0.3",
"validate-commit-msg": "^2.12.1"
},
"dependencies": {
"debug.js": "^1.1.5",
"elenpi-simple-function-call-parser": "^1.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}