-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "@reachfive/identity-core",
"version": "1.35.4",
"description": "ReachFive Identity Web Core SDK",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ReachFive/identity-web-core-sdk"
},
"author": "ReachFive",
"main": "cjs/main.js",
"module": "es/main.js",
"types": "es/main/main.d.ts",
"scripts": {
"build": "rollup -c --environment BUILD:production",
"watch": "rollup -c -w",
"test": "jest --silent",
"watch:test": "jest --silent --watch",
"lint": "eslint --ext .js,.ts src/",
"format": "prettier --write \"src/**/{*.ts,*.tsx}\""
},
"dependencies": {
"buffer": "5.6.0",
"winchan": "0.2.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-terser": "^0.4.4",
"@types/cordova-plugin-inappbrowser": "2.0.0",
"@types/google-one-tap": "1.1.0",
"@types/jest": "28.1.3",
"@types/lodash": "4.14.161",
"@types/webappsec-credential-management": "^0.6.8",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"core-js": "^3.35.0",
"eslint": "^8.56.0",
"eslint-plugin-compat": "^4.2.0",
"jest": "28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-fetch-mock": "3.0.3",
"prettier": "2.1.2",
"regenerator-runtime": "^0.13.7",
"rollup": "2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.2",
"tslib": "2.0.1",
"typescript": "^5.2.2",
"whatwg-fetch": "^3.4.1"
},
"files": [
"cjs",
"es",
"umd"
]
}