forked from bitclave/base-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.95 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.95 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@bitclave/base-client-js",
"version": "0.1.4",
"description": "Base JS library for BASE-platform",
"main": "lib/Base.js",
"types": "lib/Base.d.ts",
"scripts": {
"postinstall": "node remove-bitcore-lib-dep.js",
"test": "mocha --timeout 100000 --recursive --require ts-node/register \"./test/**/*Test.ts\"",
"testProfile": "mocha --timeout 100000 --recursive --require ts-node/register $NODE_DEBUG_OPTION \"./test/profile/*Test.ts\"",
"testValidator": "mocha --timeout 100000 --recursive --require ts-node/register $NODE_DEBUG_OPTION \"./test/system/ExtValidatorTest.ts\"",
"testRequest": "mocha --timeout 100000 --recursive --require ts-node/register $NODE_DEBUG_OPTION \"./test/requests/*Test.ts\"",
"testProtocol": "mocha --timeout 100000 --recursive --require ts-node/register $NODE_DEBUG_OPTION \"./test/protocol/ServiceProviderTest.ts\"",
"coverage": "nyc npm run test",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls",
"build": "npm run cleanup && tsc && npm run documentation",
"checkTestCode": "tsc --noEmit test/**/*.ts test/*.ts",
"checkSourceCode": "tsc --noEmit",
"cleanup": "rm -rf lib",
"prepare": "npm run build",
"documentation": "webpack && rm ./lib/main.js"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"remove-bitcore-lib-dep.js",
"**/*.d.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitclave/base-js.git"
},
"keywords": [
"Bitclave",
"Base",
"JS",
"Library",
"CAT"
],
"author": "Bitclave",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitclave/base-js/issues"
},
"homepage": "https://github.com/bitclave/base-js#readme",
"dependencies": {
"@types/lodash": "^4.14.116",
"ajv": "^6.3.0",
"bitcore-ecies": "^1.0.3",
"bitcore-lib": "^0.15.0",
"bitcore-message": "^1.0.4",
"bitcore-mnemonic": "^1.5.0",
"crypto-js": "^3.1.9-1",
"eth-sig-util": "^1.4.2",
"node-fetch": "^2.2.0",
"rxjs": "^5.5.10",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"bs58": "^4.0.1",
"buffer-compare": "^1.1.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.1.0",
"mocha-lcov-reporter": "^1.3.0",
"node-localstorage": "^1.3.1",
"nyc": "^11.6.0",
"ts-loader": "^3.5.0",
"ts-node": "^4.1.0",
"typedoc": "^0.9.0",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^2.8.1",
"webpack": "^3.11.0"
}
}