-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
75 lines (75 loc) · 1.8 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
{
"version": "7.36.0",
"name": "@workos-inc/node",
"author": "WorkOS",
"description": "A Node wrapper for the WorkOS API",
"homepage": "https://github.com/workos-inc/workos-node",
"license": "MIT",
"keywords": [
"workos"
],
"volta": {
"node": "19.9.0",
"yarn": "1.22.19"
},
"engines": {
"node": ">=16"
},
"typings": "lib/index.d.ts",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/workos-inc/workos-node.git"
},
"bugs": {
"url": "https://github.com/workos-inc/workos-node/issues"
},
"scripts": {
"clean": "rm -rf lib",
"build": "tsc -p .",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:worker": "jest src/worker.spec.ts",
"prettier": "prettier \"src/**/*.{js,ts,tsx}\" --check",
"format": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"iron-session": "~6.3.1",
"jose": "~5.6.3",
"pluralize": "8.0.0"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.4.5",
"@types/jest": "29.5.3",
"@types/node": "14.18.54",
"@types/pluralize": "0.0.30",
"jest": "29.6.2",
"jest-environment-miniflare": "^2.14.2",
"jest-fetch-mock": "^3.0.3",
"nock": "^13.5.5",
"prettier": "2.8.8",
"supertest": "6.3.3",
"ts-jest": "29.1.3",
"tslint": "6.1.3",
"typescript": "5.1.6"
},
"exports": {
"types": "./lib/index.d.ts",
"workerd": {
"import": "./lib/index.worker.js",
"default": "./lib/index.worker.js"
},
"edge-light": {
"import": "./lib/index.worker.js",
"default": "./lib/index.worker.js"
},
"default": {
"import": "./lib/index.js",
"default": "./lib/index.js"
}
}
}