-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
115 lines (115 loc) · 3.73 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "supertokens-web-js",
"version": "0.11.0",
"description": "SuperTokens SDK for vanilla JS for all recipes",
"main": "./index.js",
"scripts": {
"build-check": "cd lib && npx tsc -p tsconfig.json --noEmit && cd ../test/with-typescript && npm run build",
"check-circular-dependencies": "npx madge --circular --extensions js ./lib/build/",
"build": "cd lib && rm -rf build && npx tsc -p tsconfig.json && npm run pack",
"pretty-check": "npx pretty-quick --check .",
"pretty": "npx pretty-quick .",
"build-pretty": "npm run build && npm run pretty && npm run pretty",
"pack": "./node_modules/.bin/webpack --mode production",
"set-up-hooks": "cp hooks/pre-commit.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"lint": "cd lib && npx tslint -c tslint.json './**/*.ts'",
"test-unit": "TEST_MODE=testing npx mocha 'test/unit/*.test.js'",
"test": "npm run test-unit",
"build-docs": "rm -rf ./docs && npx typedoc --out ./docs --tsconfig ./lib/tsconfig.json ./lib/ts/index.ts ./lib/ts/**/index.ts ./lib/ts/**/*/index.ts",
"prune": "cd lib && ts-prune | grep -vE 'used in module| - default$| - package_version$|init$' && exit 1 || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supertokens/supertokens-web-js.git"
},
"keywords": [
"auth",
"authentication",
"authorisation",
"supertokens",
"chrome",
"firefox",
"IE",
"safari"
],
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/supertokens/supertokens-web-js/issues"
},
"homepage": "https://github.com/supertokens/supertokens-web-js#readme",
"dependencies": {
"supertokens-js-override": "0.0.4",
"supertokens-website": "^20.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"@size-limit/preset-small-lib": "^8.1.0",
"madge": "^5.0.1",
"mocha": "^9.2.2",
"mocha-jsdom": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"size-limit": "^8.1.0",
"tslint": "6.1.3",
"typedoc": "^0.22.5",
"typescript": "4.7.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "4.11.1"
},
"size-limit": [
{
"path": "lib/build/index.js",
"limit": "27kb"
},
{
"path": "recipe/emailverification/index.js",
"limit": "28kb"
},
{
"path": "recipe/emailpassword/index.js",
"limit": "28kb"
},
{
"path": "recipe/thirdparty/index.js",
"limit": "29kb"
},
{
"path": "recipe/thirdpartyemailpassword/index.js",
"limit": "31kb"
},
{
"path": "recipe/session/index.js",
"limit": "25kb"
},
{
"path": "recipe/passwordless/index.js",
"limit": "29kb"
},
{
"path": "recipe/thirdpartypasswordless/index.js",
"limit": "31kb"
},
{
"path": "recipe/userroles/index.js",
"limit": "25kb"
},
{
"path": "recipe/multitenancy/index.js",
"limit": "27kb"
},
{
"path": "recipe/multifactorauth/index.js",
"limit": "27kb"
},
{
"path": "recipe/totp/index.js",
"limit": "27kb"
}
]
}