-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.53 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
47
48
49
50
51
{
"name": "lockstep-sdk",
"version": "2023.28.10",
"description": "API Client to use the Lockstep Platform API",
"repository": "https://github.com/Lockstep-Network/lockstep-sdk-typescript",
"license": "MIT",
"author": "Lockstep <[email protected]> (https://developer.lockstep.io)",
"keywords": [
"fintech",
"sdk",
"lockstep",
"erp",
"invoices"
],
"homepage": "https://developer.lockstep.io",
"dependencies": {
"@types/node": "^17.0.13",
"axios": "^0.24.0",
"form-data": "^4.0.0"
},
"files": [
"lockstep-api.d.ts",
"lockstep-api.js",
"lockstep-api.js.map"
],
"scripts": {
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint \"**/*.ts\"",
"_clear": "rimraf build/compiled/*",
"_tsc": "tsc",
"_make-bundle": "rollup --config",
"build": "run-s _clear _tsc _make-bundle",
"watch": "tsc --watch"
},
"main": "lockstep-api.js",
"types": "lockstep-api.d.ts",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.67.0",
"rollup-plugin-dts": "^4.1.0",
"typescript": "^4.5.5",
"uglify-js": "^3.15.0"
}
}