-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.76 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
{
"name": "coval.js",
"version": "0.1.0",
"description": "Circuits of Value Framework",
"main": "build/Coval.js",
"typings": "build/Coval.d.ts",
"scripts": {
"test-disabled": "nyc mocha --exit",
"test": "mocha --recursive --exit",
"test-debug": "mocha --recursive --inspect-brk --exit",
"coverage": "nyc report --reporter=json > coverage/coverage.json",
"build": "tsc",
"watch": "tsc -w",
"docs": "typedoc --out docs/ src/",
"prepublish-disabled": "npm run build",
"pretest-disabled": "cp ./build/python/test.env ./build/test.env",
"postinstall-disabled": "cp ./build/python/test.env ./build/test.env"
},
"author": "Shannon Code",
"license": "MIT",
"dependencies": {
"@types/node": "^9.4.0",
"@types/superagent": "^3.5.7",
"bip32": "^1.0.2",
"bip39": "^2.5.0",
"bip39shamir-web": "git+https://github.com/jkandzi/bip39shamir-web.git",
"bitcoinjs-lib": "git+https://github.com/ch4ot1c/bitcoinjs-lib-z.git",
"bitcore-lib": "^0.14.0",
"coininfo": "git+https://github.com/DecentricCorp/coininfoplus.git",
"coinkey": "^2.0.0",
"crypto-js": "^3.1.9-1",
"dat-node": "^3.5.11",
"dotenv": "^4.0.0",
"fs-extra": "5.0.0",
"lightrail-client": "^1.3.0",
"mirror-folder": "^2.1.1",
"multichain-node": "^2.1.6-version1.0.2",
"node-uuid": "^1.4.8",
"python-shell": "^0.4.0",
"random-access-memory": "^2.4.0",
"request": "^2.87.0",
"secrets.js-grempe": "git+https://github.com/grempe/secrets.js.git",
"tsc": "^1.20150623.0",
"unloq": "^0.9.4"
},
"devDependencies": {
"@types/crypto-js": "^3.1.38",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"testdouble": "^3.3.3",
"typescript": "^2.6.2"
}
}