-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 917 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": "mapkitjs-token",
"version": "1.1.1",
"description": "Generate MapKit JS tokens",
"author": "Kevin Chung <kevin@chun.gd>",
"homepage": "https://github.com/kchung/mapkitjs-token",
"bugs": "https://github.com/kchung/mapkitjs-token/issues",
"license": "MIT",
"keywords": [
"mapkit-js",
"mapkit",
"token",
"jwt",
"apple"
],
"repository": {
"type": "git",
"url": "https://github.com/kchung/mapkitjs-token"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"release": "release-it"
},
"files": [
"dist/*.js"
],
"bin": "./dist/cli.js",
"devDependencies": {
"@types/jsonwebtoken": "^8.3.7",
"@types/ms": "^0.7.31",
"@types/yargs": "^15.0.3",
"release-it": "^13.0.0",
"typescript": "^3.7.5"
},
"dependencies": {
"chalk": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"ms": "^2.1.2",
"yargs": "^15.1.0"
}
}