{
	"name": "pitch-analyser",
	"version": "1.1.0",
	"description": "A package that returns information about audio input (e.g. note and frequency)",
	"main": "./dist/pitch-analyser.commonjs2.js",
	"scripts": {
		"build": "npm run clean && webpack --mode=production --config=./webpack.config.js",
		"clean": "rimraf ./dist",
		"lint": "eslint ./src",
		"postversion": "git push && git push --follow-tags",
		"start": "npm run clean && npm run watch",
		"version": "npm run build",
		"watch:build": "webpack --mode=production --watch --config=./webpack.config.js",
		"watch": "webpack --mode=development --watch --config=./webpack.config.js"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/kyunwang/pitch-analyser.git"
	},
	"keywords": [
		"npm",
		"node",
		"audio",
		"analyser",
		"pitch",
		"sound",
		"javascript"
	],
	"author": "Kang Yun Wang",
	"license": "MIT",
	"files": [
		"dist"
	],
	"bugs": {
		"url": "https://github.com/kyunwang/pitch-analyser/issues"
	},
	"homepage": "https://github.com/kyunwang/pitch-analyser#readme",
	"devDependencies": {
		"@babel/core": "^7.9.0",
		"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
		"@babel/preset-env": "^7.9.0",
		"babel-loader": "^8.1.0",
		"eslint": "^6.8.0",
		"eslint-config-airbnb-base": "^14.1.0",
		"eslint-plugin-import": "^2.20.2",
		"prettier": "^2.0.2",
		"rimraf": "^3.0.2",
		"uglifyjs-webpack-plugin": "^2.2.0",
		"webpack": "^4.42.1",
		"webpack-cli": "^3.3.11"
	},
	"dependencies": {}
}
