-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "bitmark-lib",
"version": "1.0.0",
"description": "Bitmark library",
"main": "index.js",
"directories": {
"example": "example",
"test": "test",
"lib": "lib",
"doc": "doc"
},
"scripts": {
"test": "_mocha \"./test/**/*.test.js\"",
"coverage": "./node_modules/istanbul/lib/cli.js cover _mocha \"./test/**/*.js\"",
"coveralls": "npm run-script coverage && ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/bitmark-inc/bitmark-lib"
},
"keywords": [
"bitmark",
"lib"
],
"author": "Bitmark Inc <support@bitmark.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bitmark-inc/bitmark-lib/issues"
},
"homepage": "https://github.com/bitmark-inc/bitmark-lib",
"dependencies": {
"bn.js": "^4.11.6",
"bs58": "^3.0.0",
"js-sha3": "^0.6.1",
"lodash": "^4.6.1",
"tweetnacl-nodewrap": "^0.1.9"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"q": "^1.4.1"
}
}