-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.4 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
52
53
54
55
56
57
58
59
60
{
"name": "parcellab",
"version": "0.5.2",
"description": "Unofficial SDK for the parcelLab API for Node.js written in Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "mocha",
"build": "yarn run clear && tsc",
"clear": "rm ./dist -rf",
"example": "ts-node ./examples/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/ArtCodeStudio/parcellab-node.git"
},
"keywords": [
"parcellab",
"api",
"ecommerce",
"parcel",
"package",
"deliveries",
"tracking",
"typescript",
"nodejs",
"courier"
],
"contributors": [
"Julian Krenge <[email protected]> (https://parcellab.com)"
],
"author": "Pascal Garber <[email protected]> (https://artandcode.studio)",
"license": "ISC",
"bugs": "https://github.com/ArtCodeStudio/parcellab-node/issues",
"files": [
"src/",
"dist/"
],
"dependencies": {
"got": "^11.8.3",
"underscore": "^1.13.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/got": "^9.6.12",
"@types/jest": "^27.4.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.19",
"@types/underscore": "^1.11.4",
"@types/validator": "^13.7.1",
"assert": "^2.0.0",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
}
}