UNPKG

twelvetet-spn

Version:

Scientific pitch notation parser/formatter for Node.js and the browser

72 lines (71 loc) 2.99 kB
{ "name": "twelvetet-spn", "version": "0.3.2", "description": "Scientific pitch notation parser/formatter for Node.js and the browser", "main": "lib/twelvetet-spn.js", "module": "es/twelvetet-spn.js", "files": ["dist", "lib", "es", "src"], "scripts": { "build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/twelvetet-spn.js", "build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/twelvetet-spn.js", "build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/twelvetet-spn.min.js", "build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/twelvetet-spn.js", "build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min", "clean": "rimraf coverage dist es lib", "docs": "jsdoc2md --template README.hbs src/*.js > README.md", "lint": "eslint src", "precommit": "lint-staged && npm run docs && git add README.md", "prepublish": "npm run clean && npm run lint && npm test && npm run build", "test": "cross-env BABEL_ENV=commonjs jest", "test:watch": "npm test -- --watch", "test:coverage": "npm test -- --coverage" }, "keywords": ["music", "theory", "notation", "scientific", "pitch", "note"], "author": "Adriano Di Giovanni <me@adrianodigiovanni.com> (http://adrianodigiovanni.com/)", "license": "MIT", "lint-staged": { "*.js": ["eslint --fix", "git add"], "*.json": ["prettier --write", "git add"] }, "devDependencies": { "babel-cli": "^6.26.0", "babel-core": "^6.26.0", "babel-eslint": "^8.2.2", "babel-jest": "^22.4.1", "babel-plugin-external-helpers": "^6.22.0", "babel-preset-es2015": "^6.24.1", "babel-register": "^6.26.0", "cross-env": "^5.1.3", "eslint": "^4.18.1", "eslint-config-prettier": "^2.9.0", "eslint-config-standard": "^11.0.0", "eslint-plugin-import": "^2.9.0", "eslint-plugin-node": "^6.0.1", "eslint-plugin-prettier": "^2.6.0", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-standard": "^3.0.1", "husky": "^0.14.3", "jest": "^22.4.2", "jsdoc-to-markdown": "^4.0.1", "lint-staged": "^7.0.0", "prettier": "^1.10.2", "rimraf": "^2.6.2", "rollup": "^0.56.2", "rollup-plugin-babel": "^3.0.3", "rollup-plugin-commonjs": "^8.3.0", "rollup-plugin-node-resolve": "^3.0.3", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-uglify": "^3.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/adriano-di-giovanni/twelvetet-spn.git" }, "bugs": { "url": "https://github.com/adriano-di-giovanni/twelvetet-spn/issues" }, "homepage": "https://github.com/adriano-di-giovanni/twelvetet-spn#readme" }