-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
85 lines (85 loc) · 2.62 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
{
"name": "@provable/proof-verification-tool",
"version": "0.2.4",
"description": "Verifies Oraclize proofs locally",
"author": "Provable",
"license": "ISC",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/oraclize/proof-verification-tool"
},
"bugs": {
"url" : "https://github.com/oraclize/proof-verification-tool/issues"
},
"bin": {
"proof-verication-tool": "lib/cli.js"
},
"dependencies": {
"asn1.js": "^4.9.0",
"atob": "^2.0.3",
"big-integer": "^1.6.17",
"btoa": "^1.1.2",
"cbor": "^3.0.0",
"chalk": "^2.3.0",
"crypto-js": "^3.1.8",
"elegant-spinner": "^1.0.1",
"figlet": "^1.2.0",
"get-random-values": "^1.2.0",
"isomorphic-fetch": "^2.2.1",
"jsrsasign": "^6.2.1",
"log-update": "^2.3.0",
"pako": "^1.0.6",
"ramda": "^0.25.0",
"safe-buffer": "^5.1.2",
"sha256": "^0.2.0",
"sync-request": "^3.0.1",
"urlsafe-base64": "^1.0.0",
"vm": "^0.1.0",
"xml2js": "^0.4.17"
},
"browser": {
"vm": false
},
"browserify": {
"transform": [
"brfs"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-flow": "^6.23.0",
"babelify": "^8.0.0",
"brfs": "^1.4.3",
"browserify": "^14.5.0",
"chai": "^4.2.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-flowtype": "^2.39.1",
"flow-bin": "^0.58.0",
"husky": "^1.3.1",
"mocha": "^6.0.1",
"nyc": "^13.3.0"
},
"scripts": {
"verify": "node ./lib/cli",
"build": "./node_modules/.bin/babel ./src -d ./lib",
"test:proofs": "node ./lib/test.js",
"test:proofs-failed": "node ./lib/testFailedProofs.js",
"test-bundle": "node -e \"require('./bundleTestNode.js');\"",
"flow": "./node_modules/.bin/flow",
"lint": "eslint '**/*.js'",
"lint:fix": "eslint '**/*.js' --fix",
"browserify": "./node_modules/browserify/bin/cmd.js ./lib/index.js -r fs:browserify-fs -o bundle.js && ./node_modules/browserify/bin/cmd.js ./lib/test.js -r fs:browserify-fs -o bundleTest.js",
"browserify-node": "./node_modules/browserify/bin/cmd.js ./lib/index.js --node --s proofVerifier -o bundleNode.js && ./node_modules/browserify/bin/cmd.js ./lib/test.js --node -o bundleTestNode.js"
}
}