-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.4 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.4 KB
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
{
"name": "sv-auditor",
"version": "2.0.0",
"description": "Auditor for SecureVote Light",
"main": "index.js",
"repository": "git@github.com/secure-vote/sv-auditor",
"author": "Max Kaye (SecureVote)",
"license": "NONE(yet)",
"browserify-shim": {
"sodium": "global:MEH",
"secp256k1": "global:MEH"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"dependencies": {
"bn.js": "^4.11.8",
"crypto-js": "^3.1.9-1",
"decimal.js": "^9.0.1",
"elliptic": "^6.4.0",
"eth-ens-namehash": "^2.0.8",
"ethereumjs-util": "^5.2.0",
"ethjs-provider-http": "^0.1.6",
"ipfs-api": "^18.1.1",
"js-nacl": "^1.2.2",
"js-sha256": "^0.9.0",
"keccak": "^1.4.0",
"node-process": "^1.0.1",
"pulp": "^12.0.1",
"purescript": "^0.11.6",
"purs": "^0.0.9",
"purs-loader": "^3.1.4",
"ramda": "^0.25.0",
"rlp": "^2.0.0",
"sanctuary": "^0.13.2",
"spawn-sync": "^1.0.15",
"text-encoding": "^0.6.4",
"try-thread-sleep": "^1.0.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"browserify-shim": "^3.8.14",
"lerna": "^2.11.0",
"sodium": "^2.0.3"
},
"optionalDependencies": {
"secp256k1": "^3.5.0"
},
"scripts": {
"----- PureScript (Aduit + Admin)": "exit 1",
"audit-run-w": "cd _pureDist && reflex -g .notify -s -- ./runAudit.sh --bScAddr 0x3b8315cbef53ce497bc993491b7c9743549ab395",
"audit-dev": "pulp -w --then 'date +%s > _pureDist/.notify' build --main SV.AuditCLI --to _pureDist/audit-dev.js",
"audit-prod": "pulp build --main SV.AuditCLI -j 3 --to _pureDist/audit-cli.js",
"audit-prod-web": "pulp browserify --standalone SvAudit --main SV.AuditWeb -j 1 --to _pureDist/audit-web.js --skip-entry-point -O",
"audit-dev-web": "pulp -w browserify --standalone SvAudit --main SV.AuditWeb -j 3 --to _pureDist/audit-web.js --skip-entry-point -O",
"admin-dev": "pulp -w build --main SecureVote.Democs.SwarmMVP.Admin -j 2 --to _pureDist/admin.js",
"admin-prod": "pulp build --main SecureVote.Democs.SwarmMVP.Admin -j 2 --to _pureDist/admin.js",
"test": "pulp -w test --test-path test",
"test-no-watch": "pulp test --test-path test",
"gen-contracts": "./makeWeb3ContractsForPurs.sh",
"build-audit-web": "./build_prod_audit_web.sh",
"----- Publishing Stuff -----": "exit 1",
"prepublishOnly": "./scripts/prepublish.sh",
"release": "npm run prepublishOnly && lerna publish"
}
}