-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.66 KB
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
{
"name": "ship-node",
"version": "0.0.8",
"description": "The node wrapper for the PackageX Cloud Shipment APIs.",
"main": "lib/ship.js",
"scripts": {
"doc": "jsdoc -c jsdoc.json --readme ./README.md",
"generate-docs": "jsdoc --configure jsdoc.json --verbose",
"shipments.list": "node ./bin/index shipments.list",
"shipments.create": "node ./bin/index shipments.create",
"shipments.buy": "node ./bin/index shipments.buy",
"shipments.retrieve": "node ./bin/index shipments.retrieve",
"shipments.refund": "node ./bin/index shipments.refund",
"shipments.update": "node ./bin/index shipments.update",
"profile.retrieve": "node ./bin/index profile.retrieve",
"test": "node ./bin/index test",
"package-publish": "node ./bin/index test && npm publish",
"deploy": "node ./bin/index test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/packagex-io/ship-node.git"
},
"keywords": [
"ship, courier, carrier, usps, shipment"
],
"author": "Ship",
"license": "ISC",
"bugs": {
"url": "https://github.com/packagex-io/ship-node/issues"
},
"homepage": "https://github.com/packagex-io/ship-node#readme",
"contributors": [
{
"name": "Valentin Panyushenko",
"email": "me@panyushenko.com",
"url": "https://github.com/vpanyushenko"
},
{
"name": "Ali Khan",
"email": "ali.khan@packagex.io",
"url": "https://github.com/aikhan79"
}
],
"devDependencies": {
"clean-jsdoc-theme": "^4.2.17",
"colors": "^1.4.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"jsdoc": "^4.0.2"
},
"dependencies": {
"axios": "^1.5.1"
}
}