forked from supabase/supabase-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.39 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
{
"name": "@supabase/supabase-js",
"version": "0.36.5",
"description": "Supabase Realtime API",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib && rimraf umd && rimraf umd_temp",
"test": "mocha -r @babel/register -r babel-polyfill test/unit/**/*.js",
"test:integration": "mocha -r @babel/register -r babel-polyfill test/integration/**/*.js",
"test:auth": "mocha --timeout 10000 -r @babel/register -r babel-polyfill test/integration/testAuth.js",
"test:integration:full": "docker-compose up -d && sleep 10 && mocha -r @babel/register -r babel-polyfill test/integration/**/*.js ; docker-compose down --remove-orphans",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:watch": "npm test -- --watch",
"test:examples": "node examples/",
"cover": "nyc --check-coverage && npm test",
"build": "BABEL_ENV=production babel src --out-dir lib --copy-files",
"build:umd": "BABEL_ENV=production babel --plugins @babel/plugin-transform-modules-umd src --out-dir umd_temp && webpack",
"prepublish": "npm run clean && npm run build && npm run build:umd",
"deploy:minor": "npm version minor && npm publish --access=public",
"deploy:patch": "npm version patch && npm publish --access=public"
},
"files": [
"lib",
"src",
"umd"
],
"repository": "https://github.com/supabase/supabase-js",
"keywords": [
"supabase",
"realtime",
"postgrest",
"javascript"
],
"author": "Supabase",
"license": "MIT",
"bugs": {
"url": "https://github.com/supabase/supabase-js/issues"
},
"homepage": "https://supabase.io",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-umd": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.8.3",
"@babel/register": "^7.8.3",
"@supabase/doctest-js": "^0.1.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-minify": "^0.5.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"jest-websocket-mock": "^2.0.1",
"mocha": "^8.0.1",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@supabase/postgrest-js": "^0.17.0",
"@supabase/realtime-js": "^0.9.0",
"superagent": "^5.2.1"
}
}