-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 945 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
34
35
36
37
38
39
{
"name": "lightspeed-sdk",
"version": "0.1.0-beta.11",
"description": "Unofficial Lightspeed SDK for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["/dist"],
"scripts": {
"test": "jest --env=node",
"build": "npx tsc",
"check": "prettier --check src",
"lint": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitaport/lightspeed-sdk.git"
},
"keywords": [
"lightspeed"
],
"author": "Digitaport",
"license": "MIT",
"bugs": {
"url": "https://github.com/digitaport/lightspeed-sdk/issues"
},
"homepage": "https://github.com/digitaport/lightspeed-sdk#readme",
"dependencies": {
"axios": "^0.21.0",
"form-data": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"jest": "^28.0.0",
"nock": "^13.0.5",
"prettier": "2.1.2",
"ts-jest": "^28.0.1",
"typescript": "^4.6.4"
}
}