-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
101 lines (101 loc) · 3.04 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "exonum-client-anchoring",
"version": "0.7.2",
"description": "Exonum anchoring check library",
"main": "./dist/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --exit -r babel-register \"test/**/*.test.js\"",
"test-browser": "karma start localKarma.conf.js",
"test-saucelabs": "karma start",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"compile": "NODE_ENV=rollup rollup -c ./rollup.config.js && NODE_ENV=rollup BROWSER=true rollup -c ./rollup.config.js",
"prepare": "npm run compile",
"coveralls": "NODE_ENV=test nyc mocha \"test/**/*.test.js\" --exit && cat ./coverage/lcov.info | coveralls"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/exonum/exonum-client-anchoring.git"
},
"author": "Exonum Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/exonum/exonum-client-anchoring/issues"
},
"homepage": "https://github.com/exonum/exonum-client-anchoring#readme",
"keywords": [
"exonum",
"blockchain",
"transactions",
"anchoring"
],
"devDependencies": {
"axios": "^0.21.1",
"axios-mock-adapter": "^1.19.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015-mod": "^6.6.0",
"babel-preset-es3": "^1.0.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"karma": "^6.0.1",
"karma-babel-preprocessor": "^8.0.1",
"karma-browserify": "^8.0.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^4.1.4",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"rollup": "^0.51.8",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^7.3.2"
},
"dependencies": {
"big-integer": "^1.6.41",
"bitcoinjs-lib": "^3.3.2",
"core.js": "^0.4.2",
"exonum-client": "0.16.6",
"idb-keyval": "^2.3.0"
},
"browser": {
"./src/store/node.js": "./src/store/browser.js"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov"
],
"sourceMap": false,
"instrument": false
}
}