-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·102 lines (102 loc) · 2.51 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@lob/lob-typescript-sdk",
"description": "Lob API wrapper",
"keywords": [
"Lob",
"Lob-node",
"Lob-typescript",
"rest",
"api",
"wrapper",
"Lob.com",
"printing",
"address verification",
"address validation",
"address autocomplete"
],
"version": "1.3.5",
"homepage": "https://github.com/lob/lob-typescript-sdk",
"author": "Lob <support@lob.com> (https://lob.com/)",
"repository": {
"type": "git",
"url": "https://github.com/lob/lob-typescript-sdk.git"
},
"bugs:": "https://github.com/lob/lob-typescript-sdk/issues",
"engines": {
"node": ">= 20"
},
"license": "MIT",
"files": [
"LICENSE.txt",
"dist"
],
"scripts": {
"clean": "rm -rf ./dist/",
"pretty": "prettier --write .",
"pretty:check": "prettier --check .",
"test": "jest",
"test:integration": "jest -c jest.integrationConfig.js --detectOpenHandles",
"test:all": "npm run test && npm run test:integration",
"prepare": "npm run clean && tsc && rollup -c",
"semantic-release": "semantic-release",
"open:cov": "open ./coverage/index.html"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"node": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"default": "./dist/index.mjs"
},
"dependencies": {
"axios": "^1.6.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@octokit/core": "^3.5.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@semantic-release/npm": "^9.0.0",
"@slack/web-api": "^6.6.0",
"@types/jest": "^29.0.0",
"@types/node": "^16.11.6",
"husky": "^7.0.4",
"jest": "^29.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.66.1",
"semantic-release": "^19.0.2",
"ts-jest": "^29.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false,
"tarballDir": "dist"
}
],
[
"@semantic-release/github",
{
"assets": "dist/*.tgz"
}
]
]
}