UNPKG

tonic-example

Version:
87 lines 2.62 kB
{ "name": "tonic-example", "version": "0.2.0", "description": "Tonic example generator", "engines": { "node": ">=0.10" }, "bin": { "tonic-example": "./bin/index.js" }, "files": [ "index.js", "src/", "dist/", "bin/", "tonic-example.js" ], "main": "dist/index.js", "jsnext:main": "src/index.js", "scripts": { "test-es5": "mocha --compilers js:babel-register && npm run lint", "test:md": "npm run transpile && mos test", "test": "npm run test-es5 && npm run test:md", "lint": "eslint src/**/*.js", "commit": "git-cz", "coverage": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha -- --compilers js:babel-register -R spec", "precoveralls": "istanbul cover -x \"**/*.spec.js\" node_modules/mocha/bin/_mocha --report lcovonly -- --compilers js:babel-register -R spec && npm i coveralls@2", "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", "postcoveralls": "rm -rf ./coverage", "md": "mos", "prepublish": "npm run transpile && node bin/index.js", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "transpile": "babel src --out-dir dist" }, "repository": { "type": "git", "url": "https://github.com/zkochan/tonic-example" }, "keywords": [ "tonic", "example" ], "author": { "name": "Zoltan Kochan", "email": "zoltan.kochan@gmail.com", "url": "http://kochan.io" }, "license": "MIT", "bugs": { "url": "https://github.com/zkochan/tonic-example/issues" }, "homepage": "https://github.com/zkochan/tonic-example#readme", "tonicExampleFilename": "tonic-example.js", "dependencies": { "babel-runtime": "^6.9.0", "independent": "^0.2.0", "meow": "^3.7.0" }, "devDependencies": { "babel-cli": "^6.9.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-transform-runtime": "^6.9.0", "babel-preset-es2015": "^6.9.0", "babel-register": "^6.9.0", "chai": "^3.4.1", "cz-conventional-changelog": "1.1.5", "eslint": "^2.8.0", "eslint-config-standard": "^5.1.0", "eslint-plugin-promise": "^1.1.0", "eslint-plugin-standard": "^1.3.2", "ghooks": "^1.2.1", "istanbul": "^0.4.2", "mocha": "^2.3.4", "mos": "^0.11.1", "semantic-release": "^4.3.5", "validate-commit-msg": "^2.6.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" }, "ghooks": { "commit-msg": "node ./node_modules/validate-commit-msg/index.js", "pre-commit": "npm test" } } }