forked from exonum/exonum-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.03 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
86
{
"name": "exonum-client",
"version": "0.3.0",
"description": "Light Client for Exonum Blockchain",
"main": "./lib/index.js",
"engines": {
"node": ">=4"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"dist",
"lib"
],
"dependencies": {
"big-integer": "^1.6.17",
"sha.js": "^2.4.8",
"tweetnacl": "^0.14.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.5",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"grunt": "^1.0.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-uglify": "^2.2.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.2.1"
},
"scripts": {
"test": "grunt test",
"coveralls": "cross-env NODE_ENV=test nyc mocha && cat ./coverage/lcov.info | coveralls",
"prepare": "grunt compile",
"lint": "eslint ./src ./test",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/exonum/exonum-client.git"
},
"author": "Exonum Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/exonum/exonum-client/issues"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov"
],
"sourceMap": false,
"instrument": false
},
"homepage": "https://github.com/exonum/exonum-client#readme",
"keywords": [
"exonum",
"blockchain",
"transactions",
"cryptography",
"ed25519",
"nacl",
"sha256",
"merkle tree"
]
}