forked from powersimple/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.99 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.99 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
99
{
"name": "ethvtx",
"version": "2.1.1",
"description": "Ethereum-Ready Redux Store Configuration",
"main": "lib/index.js",
"scripts": {
"test:clean": "rm -rf coverage && rm -rf .nyc_output",
"test:mocha": "yarn test:clean && nyc ts-mocha -p ./tsconfig.json --timeout 10000 sources/**/**.test.ts",
"coverage:upload": "cat ./coverage/lcov.info | coveralls",
"test:lint": "tslint --project .",
"test:editorconfig": "editorconfig-cli",
"test": "yarn test:lint && yarn test:editorconfig && yarn test:mocha",
"build": "rm -rf lib && tsc",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"@lerna/postinstall": "yarn build",
"@lerna/postclean": "rm -rf lib && rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ticket721/ethvtx.git"
},
"keywords": [
"ethereum",
"redux",
"dapp"
],
"author": "Iulian Rotaru",
"license": "MIT",
"bugs": {
"url": "https://github.com/ticket721/ethvtx/issues"
},
"homepage": "https://github.com/ticket721/ethvtx#readme",
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@htmlacademy/editorconfig-cli": "^1.0.0",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@redux-saga/types": "^1.0.0-rc.0",
"@types/expect": "^1.20.4",
"@types/lodash": "^4.14.119",
"@types/mocha": "^5.2.7",
"@types/node": "13.7.7",
"@types/redux": "^3.6.0",
"conventional-changelog-cli": "^2.0.17",
"coveralls": "^3.0.2",
"deep-extend": ">=0.5.1",
"expect": "^24.9.0",
"ganache-core": "2.7.0",
"husky": "4.3.0",
"linted": "^1.0.5",
"lodash": "^4.17.11",
"merge": ">=1.2.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"solc": "0.5.11",
"ts-mocha": "^6.0.0",
"tslint": "^5.12.1",
"typescript": "^3.2.2",
"web3": "1.2.1"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"include": [
"sources/**/*.ts",
"sources/**/**/*.ts"
],
"exclude": [
"sources/*.ts",
"sources/state/*.ts"
]
},
"peerDependencies": {
"redux": "^4.0.1",
"redux-saga": "^0.16.2"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"eip55": "^1.0.3",
"js-sha3": "^0.8.0"
},
"editorconfig-cli": [
"./*.js",
"./*.json",
"./sources/**/*.ts"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git status && editorconfig-cli",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}