-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "parcel-tracker-api",
"version": "1.2.0",
"description": "Parcel tracker for Node.js",
"keywords": [
"parcel",
"track",
"tracker",
"api",
"delivery",
"shipment",
"status",
"shopping",
"shipping",
"dhl",
"ups",
"colissimo",
"la poste",
"laposte",
"chronopost",
"royalmail",
"royal",
"mail",
"royal mail"
],
"bugs": {
"url": "https://github.com/AdrienAudouard/parcel-tracker-api/issues"
},
"homepage":"https://github.com/AdrienAudouard/parcel-tracker-api#readme",
"main": "dist/index.js",
"types" : "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdrienAudouard/parcel-tracker-api"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node sandbox/server.js",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"author": "Adrien Audouard",
"license": "MIT",
"devDependencies": {
"@types/date-and-time": "^0.6.0",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"date-and-time": "^0.13.1",
"html-entities": "^1.3.1"
}
}