-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
75 lines (75 loc) · 2.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@easypost/api",
"description": "EasyPost Node Client Library",
"version": "7.5.3",
"author": "Easypost Engineering <[email protected]>",
"homepage": "https://easypost.com",
"bin": {
"easypost": "./repl.js"
},
"repository": {
"type": "git",
"url": "git://github.com/easypost/easypost-node.git"
},
"main": "index.js",
"types": "types/index.d.ts",
"license": "MIT",
"engines": {
"node": ">= 12.0"
},
"scripts": {
"build": "vite build",
"clean": "rm -rf ./dist ./nyc_output ./node_modules/.cache ./coverage",
"coverage": "cross-env NODE_ENV=test vitest run --coverage",
"docs": "./node_modules/.bin/jsdoc src/models src/services src/errors src/utils -d docs",
"format": "prettier --write .",
"formatCheck": "prettier --check .",
"lint": "eslint --ext .js,.ts .",
"lintFix": "eslint --ext .js,.ts --fix .",
"prepublishOnly": "npm run clean && npm run build && npm run test && npm run lint && npm run formatCheck",
"repl": "./repl.js --local ./dist/easypost.js",
"scan": "npx audit-ci -m --config ./audit-ci.jsonc",
"test": "cross-env NODE_ENV=test vitest run",
"test:node-compatibility": "cross-env NODE_ENV=test node ./test/node_compatibility",
"watch": "vite build --watch"
},
"dependencies": {
"core-js": "~3.30.2",
"nodent-runtime": "~3.2.1",
"regenerator-runtime": "~0.13.11",
"source-map-support": "~0.5.21",
"superagent": "~8.0.9",
"uuid": "^9.0.0",
"yargs": "~17.7.2",
"yargs-parser": "~21.1.1"
},
"devDependencies": {
"@pollyjs/adapter-node-http": "^6.0.5",
"@pollyjs/core": "^6.0.5",
"@pollyjs/persister-fs": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-istanbul": "^2.1.8",
"audit-ci": "^6.6.1",
"chai": "4.3.10",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-vitest-globals": "^1.5.0",
"jsdoc": "^4.0.2",
"prettier": "^2.8.8",
"typescript": "^4.9.5 || ~5.0.0",
"vite": "^6.0.5",
"vite-plugin-externals": "^0.6.2",
"vitest": "^2.1.8",
"vows": "^0.8.3"
}
}