This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.58 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
{
"name": "@iden3/iden3",
"version": "0.0.26",
"engines": {
"node": "^8"
},
"publishConfig": {
"access": "public"
},
"description": "",
"main": "index.js",
"scripts": {
"test:unit": "rm -rf tmp && mocha --require babel-core/register --require mock-local-storage --recursive 'src/**/*.test.js' --timeout 100000",
"test:unitf": "rm -rf tmp && mocha --require babel-core/register --require mock-local-storage --bail -ig 'pow' --recursive 'src/**/*.test.js' --timeout 100000 # FAST",
"test:int": "rm -rf tmp && mocha --require babel-core/register --require mock-local-storage --timeout 20000",
"build-test:int": "npm run build && npm run test:int",
"test:all": "npm run test:unit && npm run test:int",
"build": "babel --ignore '**/*.test.js' src/ -d lib/",
"flow": "flow",
"browserify": "npm run build && browserify lib/index.js --standalone iden3 > iden3js-bundle.js",
"copy-prepublish": "cp package.json README.md LICENSE lib",
"build-publish": "npm run build && npm run copy-prepublish && npm publish lib",
"lint": "eslint ./src"
},
"author": "iden3.io",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bigint-buffer": "^1.1.2",
"bip39": "^2.5.0",
"bs58": "^4.0.1",
"blake-hash": "^1.1.0",
"chai": "^4.1.2",
"circomlib": "0.0.18",
"ethereumjs-util": "^5.2.0",
"ethereumjs-wallet": "^0.6.2",
"ethjs-util": "^0.1.6",
"hdkey": "^1.1.1",
"keccak": "^1.4.0",
"keythereum": "^1.0.4",
"mocha": "^5.2.0",
"pbkdf2-sha256": "^1.1.1",
"qrcode-generator": "^1.4.3",
"snarkjs": "^0.1.13",
"tweetnacl": "^1.0.1",
"tweetnacl-sealedbox-js": "^1.1.0",
"tweetnacl-util": "^0.15.0",
"web3": "1.0.0-beta.33",
"ws": "^5.2.2",
"babel-runtime": "6.26.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"browserify": "^16.2.3",
"bufferutil": "^4.0.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"flow-bin": "^0.92.0",
"flow-remove-types": "^1.2.3",
"flow-typed": "^2.5.1",
"mock-local-storage": "^1.1.8",
"node-localstorage": "^1.3.1",
"utf-8-validate": "^5.0.2"
}
}