forked from sheminusminus/apple-music-token-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 980 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
39
40
41
42
{
"name": "apple-music-token-node",
"version": "2.0.1",
"description": "generate developer tokens for the apple music api in node, with a CLI mode for development.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sheminusminus/apple-music-token-node.git"
},
"bin": {
"amtn": "./lib/cli.js"
},
"keywords": [
"apple",
"music",
"developer",
"token",
"node",
"cli"
],
"author": "Emily Kolar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sheminusminus/apple-music-token-node/issues"
},
"homepage": "https://github.com/sheminusminus/apple-music-token-node#readme",
"dependencies": {
"chalk": "^2.4.2",
"clear": "^0.1.0",
"figlet": "^1.2.3",
"inquirer": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.0"
}
}