-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.3 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
54
55
56
57
58
59
60
{
"name": "pronunciation-finder",
"description": "An application for getting audio files with pronunciation from public dictionaries",
"homepage": "https://github.com/lkazberova/pronunciation-finder#readme",
"author": {
"name": "Leisan Kazberova",
"url": "http://github.com/lkazberova"
},
"version": "0.8.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"audio-2.0.0": "^2.0.0",
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.5",
"commander": "^7.0.0",
"fs": "^0.0.1-security",
"lamejs": "^1.2.0",
"path": "^0.12.7",
"play-sound": "^1.1.3",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"pkg": {
"scripts": "*.js"
},
"keywords": [
"dictionary",
"terminal",
"pronunciation",
"transcription"
],
"repository": {
"type": "git",
"url": "https://github.com/lkazberova/pronunciation-finder.git"
},
"bin": {
"pronunciation-finder": "./index.js"
},
"scripts": {
"prettier": "prettier --write \"**/*.js\"",
"start": "node ./index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
}
}