-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
125 lines (125 loc) · 3.59 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "steem-wise-cli",
"version": "3.2.0",
"description": "Vote delegation system for STEEM blockchain: cli tool for delegators",
"main": "dist/index.js",
"bin": {
"wise": "./dist/index.js"
},
"engines": {
"node": ">=10.15"
},
"scripts": {
"check": "if echo \"$(node --version)\" | grep -q \"$(cat .nvmrc)\"; then echo \"Node version correct\"; else echo \"Node version does not match that in .nvmrc\" && exit 1; fi",
"build:cleanbefore": "rm -rf dist",
"build:lint": "tslint -c tslint.json -p tsconfig.lint.json",
"build:node": "tsc",
"build": "npm run check && npm run build:cleanbefore && npm run build:node && npm run build:lint",
"prepare": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"commitmsg": "commitlint -E GIT_PARAMS",
"test": "TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha -r ts-node/register --require source-map-support/register --recursive src/**/*.spec.test.ts",
"verify": "TS_NODE_FILES=true TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha -r ts-node/register --require source-map-support/register --recursive src/**/*.integration.test.ts",
"test-coverage": "nyc npm run test",
"verify-coverage": "nyc npm run verify",
"lint-fix": "tslint --fix -c tslint.json -p tsconfig.lint.json",
"semantic-release": "semantic-release"
},
"dependencies": {
"bluebird": "^3.5.2",
"commander": "^2.18.0",
"js-yaml": "^3.13.0",
"lodash": "^4.17.11",
"node-docker-watchdog": "^1.2.3",
"ow": "^0.8.0",
"prompt": "^1.0.0",
"steem-wise-core": "^4.2.0",
"universe-log": "^0.2.0"
},
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@types/bluebird": "3.5.26",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/js-yaml": "3.12.1",
"@types/lodash": "4.14.123",
"@types/mocha": "5.2.6",
"@types/mock-fs": "3.6.30",
"@types/nock": "9.3.1",
"@types/node": "9.6.46",
"@types/rimraf": "2.0.2",
"@types/sinon": "7.0.11",
"@types/uuid": "3.4.4",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"conventional-changelog-cli": "2.0.12",
"husky": "1.3.1",
"mocha": "6.0.2",
"mock-fs": "4.8.0",
"nock": "10.0.6",
"nyc": "13.3.0",
"rimraf": "2.6.3",
"semantic-release": "16.0.0-beta.18",
"sinon": "7.3.1",
"stdio-mock--fork-by-wiseteam": "1.1.2",
"ts-node": "8.0.3",
"tslint": "5.11.0",
"typescript": "3.4.1",
"uuid": "3.3.2",
"wise-tslint-configuration": "0.2.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
0
],
"scope-case": [
0
]
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "https://github.com/wise-team/steem-wise-cli.git"
},
"keywords": [
"steem",
"blockchain",
"wise"
],
"author": "The Wise Team (https://wise-team.io/)",
"contributors": [
"Jędrzej Lewandowski <[email protected]> (https://jedrzej.lewandowski.doctor/)"
],
"license": "MIT",
"homepage": "https://wise.vote/",
"bugs": {
"url": "https://github.com/wise-team/steem-wise-cli/issues"
}
}