-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "svix",
"version": "1.26.0",
"description": "Svix webhooks API client and webhook verification library",
"author": "svix",
"repository": "https://github.com/svix/svix-libs",
"type": "commonjs",
"keywords": [
"svix",
"diahook",
"webhooks",
"typescript"
],
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "yarn run build",
"test": "jest",
"prepublishOnly": "yarn lint",
"lint:eslint": "eslint --ignore-path .lintignore --ext .js,.jsx,.ts,.tsx src",
"lint:prettier": "prettier --ignore-path .lintignore --write src/**.ts",
"lint": "yarn run lint:prettier && yarn run lint:eslint --max-warnings=0",
"lint:fix": "yarn run lint:prettier --write && yarn run lint:eslint --fix"
},
"dependencies": {
"@stablelib/base64": "^1.0.0",
"es6-promise": "^4.2.4",
"fast-sha256": "^1.3.0",
"svix-fetch": "^3.0.0",
"url-parse": "^1.4.3"
},
"devDependencies": {
"@stablelib/utf8": "^1.0.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@typescript-eslint/typescript-estree": "^4.15.2",
"eslint": "^7.20.0",
"jest": "^27.0.4",
"prettier": "^2.2.1",
"ts-jest": "^27.0.3",
"typescript": "^3.9.3"
}
}