-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "bpm-detective",
"version": "2.0.5",
"description": "Detects the BPM of a song or audio sample",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build -s && npm run minify -s",
"test": "browserify test/program.js -t [ babelify --presets es2015 ] -t brfs | tape-run -b chrome",
"posttest": "npm run lint",
"build": "babel src/ -d lib/ --presets es2015",
"minify": "browserify lib/index.js --standalone DetectBPM | uglifyjs > dist/bpm-detective.js",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tornqvist/bpm-detective.git"
},
"keywords": [
"detect",
"audio",
"bpm",
"sound",
"music"
],
"author": "Carl Törnqvist <calle.tornqvist@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tornqvist/bpm-detective/issues"
},
"homepage": "https://github.com/tornqvist/bpm-detective#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"brfs": "^1.4.3",
"browserify": "^13.0.0",
"eslint": "^1.10.3",
"tape": "^4.0.1",
"tape-run": "^2.1.3",
"uglify-js": "^2.4.24"
}
}