-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 KB
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
{
"name": "cody-music",
"version": "2.10.8",
"description": "mac osx spotify and itunes music player controller, spotify audio features, itunes and spotify genre, and playlist control",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel --presets ES2020 -d dist/ lib && tsc && node packaging",
"test": "yarn build && mocha -r ts-node/register test/**/test.ts --reporter spec --timeout 20000 --exit",
"apis-test": "yarn build && mocha -r ts-node/register test/apis/test.ts --reporter spec --timeout 20000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swdotcom/music.git"
},
"keywords": [
"music",
"player",
"manager",
"spotify",
"itunes",
"controller",
"top",
"cody",
"software",
"songs",
"recommendations",
"playlist"
],
"author": "software",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/swdotcom/music/issues"
},
"homepage": "https://github.com/swdotcom/music#readme",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^18.19.33",
"babel-cli": "^6.26.0",
"babel-preset-es2020": "^1.0.2",
"chai": "^4.3.3",
"mocha": "^8.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0"
},
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"date-fns": "^3.6.0"
}
}