-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.29 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": "yinjs",
"version": "0.1.0",
"description": "A javascript implementation of the YIN algorithm for Node.js and the browser",
"main": "yin.js",
"scripts": {
"build": "uglifyjs yin.js --compress --mangle --output yin.min.js",
"precommit": "lint-staged && npm run build && git add yin.min.js"
},
"keywords": [
"algorithm",
"audio",
"detection",
"estimation",
"music",
"pitch",
"signal",
"speech",
"yin"
],
"author": "Adriano Di Giovanni <[email protected]> (http://adrianodigiovanni.com/)",
"license": "MIT",
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"contributors": ["Luigi Lescarini <[email protected]>"],
"devDependencies": {
"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",
"lint-staged": "^7.0.0",
"prettier": "^1.10.2",
"uglify-js": "^3.3.12"
}
}