This repository was archived by the owner on Mar 19, 2024. It is now read-only.
forked from TrueLayer/truelayer-client-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.25 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.25 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
{
"name": "truelayer-client",
"version": "1.2.1-onedox-0",
"description": "The official TrueLayer API client library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/TrueLayer/truelayer-client-javascript.git",
"author": "Jarvis Prestidge <jarvis@truelayer.com> & Raluca Lehadus <raluca@truelayer.com>",
"license": "MIT",
"devDependencies": {
"@types/sinon": "^2.2.2",
"ava": "^0.19.1",
"sinon": "^2.3.2",
"tslint": "^5.3.2",
"tslint-eslint-rules": "^4.1.0",
"typescript": "^2.3.3",
"yarn": "^0.24.5"
},
"dependencies": {
"@types/jwt-decode": "^1.4.28",
"@types/node": "^7.0.21",
"@types/request-promise": "4.1.33",
"jwt-decode": "^2.2.0",
"moment": "^2.18.1",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p .",
"lint": "tslint --fix --format verbose *.ts",
"test": "npm run build && ava --verbose dist/test/**/*spec.js",
"retest": "ava --verbose dist/test/**/*spec.js",
"start": "node dist/app.js"
}
}