forked from Fintecture/fintecture-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "fintecture-client",
"version": "1.0.6",
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments",
"main": "dist/fintecture-client.js",
"types": "dist/fintecture-client.d.ts",
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.json",
"coverage": "nyc -r text -r lcov -r text-summary -e .ts npm run test",
"lint": "tslint -p tsconfig.json"
},
"author": "Fintecture.com",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"crypto": "^1.0.1",
"qs": "^6.9.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/jasmine": "^3.4.6",
"@types/node": "^12.12.11",
"dotenv": "^8.2.0",
"jasmine": "^3.5.0",
"jasmine-ts-console-reporter": "^3.1.1",
"nock": "^11.6.0",
"nyc": "^14.1.1",
"request": "^2.88.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"files": ["dist/**/*"]
}