forked from kinecosystem/jwt-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "@kinecosystem/jwt-service",
"version": "2.0.1",
"description": "A helper service for the creation of JWT needed to work with the Kin ecosystem SDKs",
"main": "scripts/bin/index.js",
"types": "scripts/bin/index.d.ts",
"bin": {
"jwt-service": "./scripts/bin/index.js"
},
"scripts": {
"start": "node ./scripts/bin/index.js",
"clean": "rimraf scripts/bin",
"transpile": "tsc -p scripts",
"lint": "./node_modules/.bin/tslint -p ./scripts",
"build": "npm-run-all clean lint transpile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/kinecosystem/jwt-service"
},
"author": "",
"license": "MIT",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.6",
"@types/moment": "^2.13.0",
"@types/winston": "^2.3.9",
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"hot-shots": "^5.3.0",
"jsonwebtoken": "^8.2.1",
"moment": "^2.22.1",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"typescript": "^2.8.1",
"winston": "^2.4.1"
},
"devDependencies": {
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0"
}
}