-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "stytch",
"version": "12.1.0",
"description": "A wrapper for the Stytch API",
"types": "./types/lib/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./module.mjs",
"types": "./types/lib/index.d.ts"
},
"files": [
"dist/**/*",
"types/**/*",
"module.mjs"
],
"repository": {
"type": "git",
"url": "git://github.com/stytchauth/stytch-node.git"
},
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"build": "rm -rf dist types && babel lib --out-dir dist --extensions '.ts' && tsc --declaration --outDir types --emitDeclarationOnly",
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint lib",
"test": "jest",
"test-packages": "./test-packages/test.sh"
},
"author": "Stytch",
"bugs": {
"url": "git://github.com/stytchauth/stytch-node/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^29.7.0",
"prettier": "2.4.1",
"ts-jest": "^29.1.1",
"typescript": "^5.5.4"
},
"dependencies": {
"jose": "^5.6.3",
"undici": "^6.19.5"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"commonjs": true,
"node": true,
"mocha": true
},
"rules": {
"indent": [
"error",
4
],
"no-underscore-dangle": 0,
"strict": 0,
"prefer-rest-params": 0
}
}
}