-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 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
56
57
58
59
60
61
{
"name": "postgrid-node-client",
"version": "0.11.0",
"description": "Node.js Client for PostGrid Business API",
"keywords": [
"postgrid.com",
"postal delivery",
"api"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flexbase-eng/postgrid-node-client.git"
},
"author": {
"name": "Flexbase Technologies",
"email": "hello@flexbase.app",
"url": "https://flexbase.app"
},
"contributors": [
"Bob Beaty <bob@flexbase.app>",
"Patrick Flor <patrick@flexbase.app>",
"Alex Pearson <alex.pearson@flexbase.app>"
],
"engines": {
"node": ">=10.*"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"devDependencies": {
"@types/delay": "^3.1.0",
"@types/dotenv": "^8.2.0",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/parser": "^4.24.0",
"delay": "^5.0.0",
"dotenv": "^9.0.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/formdata": "^0.10.1",
"@types/node": ">=10.0.0",
"camelcase-keys": "^6.2.2",
"form-data": "^3.0.1",
"node-fetch": "^2.6.1",
"snakecase-keys": "^4.0.2"
},
"scripts": {
"ts": "ts-node -r dotenv/config",
"prepublishOnly": "tsc --declaration",
"lint": "eslint . --ext .ts --fix",
"test": "echo 'This project currently uses manually run end-to-end tests; see https://github.com/flexbase-eng/postgrid-node-client/tree/main#development for setup instructions.'"
}
}