az-autofocus
Version:
az-autofocus is a directive that allows you to more easily control focus for specific elements
98 lines (97 loc) • 3.39 kB
JSON
{
"name": "az-autofocus",
"version": "1.0.0",
"description": "az-autofocus is a directive that allows you to more easily control focus for specific elements",
"main": "dist/az-autofocus.js",
"peerDependencies": {
"angular": "^1.3.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0"
},
"scripts": {
"build:dev": "NODE_ENV=development webpack --config node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors",
"build:prod": "NODE_ENV=production webpack --config node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors",
"build": "npm run build:dev & npm run build:prod",
"check-coverage": "./node_modules/istanbul/lib/cli.js check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"ci": "npm run eslint && npm run test:single && npm run check-coverage && npm run build",
"eslint": "eslint src/ -c node_modules/kcd-common-tools/shared/test.eslintrc",
"release": "npm run build && with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags",
"release:beta": "npm run release && npm run tag:beta",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"start": "npm run test",
"test": "NODE_ENV=test COVERAGE=true karma start",
"test:single": "npm run test -- --single-run",
"test:debug": "NODE_ENV=test karma start --browsers Chrome",
"tag:beta": "with-package npm dist-tag add pkg.name@pkg.version beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alianza-dev/az-autofocus.git"
},
"keywords": [
"angular",
"angularjs",
"filter",
"angular-sanitize",
"sanitize input"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alianza-dev/az-autofocus/issues"
},
"homepage": "https://github.com/alianza-dev/az-autofocus#readme",
"devDependencies": {
"angular": "1.4.3",
"angular-mocks": "1.4.3",
"angular-sanitize": "1.4.3",
"babel": "5.8.20",
"babel-core": "5.8.20",
"babel-eslint": "4.0.5",
"babel-loader": "5.3.2",
"chai": "3.2.0",
"codecov.io": "0.1.5",
"eslint": "0.24.1",
"eslint-loader": "0.14.2",
"eslint-plugin-mocha": "0.4.0",
"ghooks": "0.3.2",
"isparta": "3.0.3",
"isparta-loader": "0.2.0",
"istanbul": "0.3.17",
"karma": "0.13.3",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.0",
"karma-coverage": "0.4.2",
"karma-firefox-launcher": "0.1.6",
"karma-mocha": "0.2.0",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.0.0",
"karma-webpack": "1.7.0",
"kcd-common-tools": "1.0.0-beta.23",
"lodash": "3.10.0",
"mocha": "2.2.5",
"ng-annotate": "1.0.2",
"ng-annotate-loader": "0.0.6",
"node-libs-browser": "0.5.2",
"sinon": "1.15.4",
"sinon-chai": "2.8.0",
"uglify-loader": "1.2.0",
"webpack": "1.10.5",
"webpack-dev-server": "1.10.1",
"with-package": "0.2.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run eslint && npm run test:single && npm run check-coverage"
}
},
"kcdCommon": {
"webpack": {
"output": {
"library": "azAutofocus"
},
"externals": {
"angular": "angular"
}
},
"karma": "scripts/karma-overrides.js"
}
}