-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.79 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
{
"name": "t1c-sdk-js",
"version": "3.8.8",
"description": "Trust1Connector JavaScript SDK",
"main": "dist/T1CSdk.js",
"types": "lib/index.d.ts",
"license": "SEE LICENSE IN license.txt",
"homepage": "https://github.com/Trust1Team/t1c-sdk-js",
"keywords": [],
"scripts": {
"clean-dist": "shx rm -rf dist",
"clean-ts": "shx rm -rf lib lib-esm",
"clean-all": "shx rm -rf dist lib lib-esm",
"ts": "tsc && tsc -m es6 --outDir lib-esm",
"ts-openssl": "export NODE_OPTIONS=--openssl-legacy-provider && tsc && tsc -m es6 --outDir lib-esm",
"build-ts": "export NODE_OPTIONS=--openssl-legacy-provider && npm run clean-ts && npm run ts",
"build-dev": "npm run clean-dist && webpack --mode development --progress",
"build-dev-openssl": "export NODE_OPTIONS=--openssl-legacy-provider && npm run clean-dist && webpack --mode development --progress",
"build-prod": "npm run clean-dist && webpack --mode production --progress && npm run ts",
"build-prod-openssl": "export NODE_OPTIONS=--openssl-legacy-provider && npm run clean-dist && webpack --mode production --progress && npm run ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Trust1Team/t1c-sdk-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-transform-arrow-functions": "7.22.5",
"@babel/preset-env": "7.22.15",
"@types/debug": "4.1.8",
"@types/es6-promise": "^3.3.0",
"@types/lodash": "4.14.198",
"@types/node": "20.6.1",
"@types/platform": "1.3.4",
"@types/sha256": "0.2.0",
"@types/uuid": "9.0.4",
"axios-mock-adapter": "1.22.0",
"babel-core": "6.26.3",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"babelify": "10.0.0",
"browserify": "17.0.0",
"del": "7.0.0",
"dts-bundle": "0.7.3",
"gts": "5.0.1",
"shx": "^0.3.4",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.4.4",
"typescript": "5.2.2",
"uglify-js": "3.17.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "5.88.2",
"webpack-bundle-analyzer": "4.9.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-stream": "7.0.0"
},
"dependencies": {
"Base64": "^1.2.0",
"asn1js": "^3.0.5",
"axios": "^1.7.2",
"core-js": "^3.29.1",
"crypto-js": "^4.2.0",
"es6-object-assign": "^1.1.0",
"jsencrypt": "^3.3.2",
"lodash": "^4.17.21",
"logger-bootstrap": "^2.0.0-alpha2",
"md5": "^2.3.0",
"object-assign": "^4.1.1",
"semver": "^7.6.2",
"sha256": "^0.2.0",
"uuid": "^9.0.1"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"packageManager": "[email protected]"
}