-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
87 lines (87 loc) · 2.98 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"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": "webpack --config webpack.config.babel.js",
"clean": "rm -rf ./dist ./nyc_output ./node_modules/.cache ./coverage",
"coverage": "cross-env NODE_ENV=test nyc npm run test",
"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 mocha",
"watch": "webpack --config webpack.config.babel.js --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": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-transform-react-constant-elements": "^7.21.3",
"@babel/plugin-transform-react-inline-elements": "^7.21.0",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@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",
"audit-ci": "^6.6.1",
"babel-loader": "^8.2.5",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-minify": "^0.5.2",
"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",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5 || ~5.0.0",
"vows": "^0.8.3",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
}
}