-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"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": {}
}