-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 957 Bytes
/
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
{
"name": "music-search",
"version": "2.1.0",
"description": "A music metadata search utility package for Node JS.",
"main": "build/index.js",
"types": "build/index.js",
"scripts": {
"build": "tsc",
"build-watch": "tsc --watch",
"test": "npm run build; jest --detectOpenHandles",
"test-watch": "npm run build; jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacob-shuman/music-search.git"
},
"keywords": [
"music",
"metadata",
"itunes"
],
"author": "Jacob Shuman",
"license": "MIT",
"bugs": {
"url": "https://github.com/jacob-shuman/music-search/issues"
},
"homepage": "https://github.com/jacob-shuman/music-search#readme",
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/node": "^10.12.18",
"jest": "^24.0.0",
"ts-jest": "^24.0.0",
"typescript": "^3.2.2"
},
"dependencies": {
"node-itunes-search": "~1.2.1"
}
}