-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"name": "blockchain-explorer-sdk",
"version": "0.1.2",
"description": "The Blockchain Explorer SDK (aka BCX).",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint .",
"test": "NODE_ENV=test jest",
"test:coverage": "jest --coverage",
"build": "webpack",
"build-production": "webpack --mode=production",
"plato": "es6-plato -r -d ./reports/plato ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pillarwallet/blockchain-explorer-sdk.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pillarwallet/blockchain-explorer-sdk/issues"
},
"homepage": "https://github.com/pillarwallet/blockchain-explorer-sdk#readme",
"dependencies": {
"ajv": "6.5.1",
"convict": "4.2.0",
"request": "2.87.0",
"request-promise": "4.2.2",
"webpack": "4.10.2",
"webpack-cli": "3.0.1"
},
"devDependencies": {
"es6-plato": "latest",
"eslint": "5.0.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jest": "21.17.0",
"jest": "22.4.3",
"jest-html-reporter": "2.0.0"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src",
"test"
],
"testRegex": "\\.test\\.js$",
"testResultsProcessor": "./node_modules/jest-html-reporter",
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/reports/**"
],
"coverageReporters": [
"lcov"
],
"coverageDirectory": "./reports"
},
"jest-html-reporter": {
"pageTitle": "Jest results",
"outputPath": "./reports/jest/test-report.html",
"includeFailureMsg": true
}
}