-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
{
"name": "unicrypto",
"version": "1.14.1",
"description": "Minimalistic Javascript library required to perform basic operations with Universa smart contracts and other objects.",
"main": "index.js",
"types": "./types.d.ts",
"scripts": {
"test": "mocha --timeout 150000",
"coverage": "nyc npm test",
"build": "node ./bin/build.js",
"postinstall": "node ./bin/postinstall.js",
"create_worker": "node ./bin/create_worker.js"
},
"keywords": [
"crypt",
"frontend",
"client"
],
"author": "Universa Blockchain Team",
"license": "(BSD-3-Clause OR GPL-2.0)",
"bugs": "https://github.com/UniversaBlockchain/unicrypto-js/issues",
"repository": {
"type": "git",
"url": "https://github.com/UniversaBlockchain/unicrypto-js"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"terser-webpack-plugin": "^2.3.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"buffer": "^5.4.2",
"diffie-hellman": "^5.0.3",
"fastestsmallesttextencoderdecoder": "^1.0.14",
"gently-copy": "^3.2.0",
"jsbn": "^1.1.0",
"randombytes": "^2.1.0"
},
"browser": {
"fs": false
}
}