-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "wavelet-client",
"version": "2.0.0-rc.6",
"main": "dist/wavelet-client.cjs.js",
"module": "dist/wavelet-client.esm.js",
"license": "MIT",
"scripts": {
"build": "rollup -c && npm run build:umd",
"build:umd": "webpack",
"dev:umd": "webpack -w",
"dev": "rollup -c -w",
"test": "rollup -c && node test/node.js",
"test:umd": "http-server .",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/perlin-network/wavelet-client-js.git"
},
"keywords": [
"smart-contracts",
"wasm",
"utils",
"lib",
"wavelet",
"perlin"
],
"dependencies": {
"atob": "^2.1.2",
"axios": "^0.19.0",
"bigint-buffer": "^1.1.5",
"blakejs": "^1.1.0",
"core-js": "^3.3.3",
"jsbi": "^3.1.1",
"json-bigint": "^0.3.0",
"text-encoding": "^0.7.0",
"tweetnacl": "^1.0.1",
"url": "^0.11.0",
"websocket": "^1.0.28"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/runtime": "^7.5.5",
"babel-loader": "^8.0.6",
"http-server": "^0.12.0",
"rollup": "^1.16.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}