-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "examples",
"version": "0.1.0",
"description": "This repository holds hundreds of code examples for using the EasyPost API across 7+ programming languages.",
"main": "index.js",
"scripts": {
"check": "prettier --check .",
"fix": "eslint official/docs/node --ext .js,.ts --fix",
"format": "prettier --write .",
"lint": "eslint official/docs/node --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EasyPost/examples.git"
},
"keywords": [
"easypost",
"examples"
],
"author": "EasyPost",
"license": "MIT",
"bugs": {
"url": "https://github.com/EasyPost/examples/issues"
},
"homepage": "https://github.com/EasyPost/examples#readme",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.8"
},
"dependencies": {
"@easypost/api": "^7.3.0"
}
}