-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 850 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
{
"name": "revolutcardapi",
"version": "1.0.0",
"description": "A UnOfficial Revolut API Wrapper which allows you to manage (get, create, delete, freeze, etc) your Revolut Credit Cards",
"main": "src/index.ts",
"scripts": {
"build": "npm run format && npm run lint && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [],
"author": "ShufflePerson",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.0.0",
"prettier": "^2.8.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@types/axios": "^0.14.0",
"aes-ecb": "^1.3.15",
"axios": "^1.4.0"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "@shuffleperson/revolutapi"
}
}