forked from supabase/auth-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "@supabase/gotrue-js",
"version": "0.0.0",
"description": "Isomorphic GoTrue client",
"keywords": [
"gotrue",
"supabase"
],
"homepage": "https://github.com/supabase/gotrue-js",
"bugs": "https://github.com/supabase/gotrue-js/issues",
"license": "MIT",
"author": "Supabase",
"files": [
"dist",
"src"
],
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"repository": "supabase/gotrue-js",
"scripts": {
"clean": "rimraf dist docs",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "run-s test:clean test:infra test:suite test:clean",
"test:suite": "jest --runInBand",
"test:infra": "cd infra/db && docker-compose down && docker-compose up -d && sleep 3",
"test:clean": "cd infra/db && docker-compose down --remove-orphans",
"docs": "typedoc --mode file --target ES6 --theme minimal",
"docs:json": "typedoc --json docs/spec.json --mode modules --includeDeclarations --excludeExternals"
},
"dependencies": {
"cross-fetch": "^3.0.6"
},
"devDependencies": {
"@types/faker": "^5.1.6",
"@types/jest": "^26.0.13",
"@types/node": "^14.14.7",
"@types/node-fetch": "^2.5.7",
"faker": "^5.3.1",
"jest": "^26.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typedoc": "^0.19.1",
"typescript": "^4.0.2"
}
}