forked from SmartTokenLabs/token-negotiator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.47 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
{
"name": "@tokenscript/token-negotiator",
"version": "1.0.3-alpha",
"description": "Token-negotiator enables token attestations providing bridge between web 2.0 and 3.0.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "npm run clean && tsc -m es6 --outDir dist && npm run copy-assets",
"build-umd": "npm run clean && webpack && npm run copy-assets",
"copy-assets": "copyfiles ./src/theme/*.css dist/theme -V --flat && copyfiles ./src/vendor/*.js dist/vendor -V --flat",
"clean": "shx rm -rf _bundles dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TokenScript/token-negotiator.git"
},
"browser": {
"crypto": false
},
"author": "Smart Token Labs <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TokenScript/token-negotiator/issues"
},
"homepage": "https://github.com/TokenScript/token-negotiator#readme",
"dependencies": {
"@toruslabs/torus-embed": "^1.20.2",
"@walletconnect/web3-provider": "^1.7.1",
"asn1js": "^2.0.26",
"big-integer": "^1.6.48",
"ethers": "^5.4.0",
"pvutils": "^1.0.17",
"style-loader": "^3.3.1",
"web3": "^1.7.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@types/create-hash": "^1.2.2",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/keccak": "^3.0.1",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.38",
"@types/readable-stream": "^2.3.13",
"assert": "^2.0.0",
"axios": "^0.24.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browserify": "^17.0.0",
"buffer": "^6.0.3",
"copyfiles": "^2.4.1",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.5.1",
"envify": "^4.1.0",
"file-loader": "^6.2.0",
"https-browserify": "^1.0.0",
"install": "^0.13.0",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"npm": "^8.4.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"shx": "^0.3.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"terser-webpack-plugin": "^5.2.4",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"typescript-plugin-css-modules": "^3.4.0",
"url": "^0.11.0",
"webpack-cli": "^4.9.2"
}
}