-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "@propelauth/javascript",
"description": "A library for managing authentication in the browser, backed by PropelAuth",
"repository": {
"type": "git",
"url": "https://github.com/PropelAuth/javascript"
},
"version": "2.0.19",
"keywords": [
"auth",
"user",
"authentication"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^26.0.23",
"@types/js-cookie": "^3.0.6",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-loader": "^8.2.2",
"jest": "^27.2.4",
"js-cookie": "^3.0.5",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.3",
"rollup": "^2.46.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"browserslist": [
"> 0.2%",
"not dead"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run test && npm run build:types && npm run build:js",
"test": "jest --silent",
"prepublishOnly": "npm run build"
},
"main": "dist/cjs/index.js",
"browser": "dist/javascript.min.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/types/index.d.ts"
}