-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.52 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
{
"name": "steem-wise-test",
"version": "3.1.1",
"description": "System tests for steem wise",
"directories": {},
"engines": {
"node": ">=10.15"
},
"dependencies": {
"@commitlint/cli": "^7.2.0",
"@commitlint/config-conventional": "^7.1.2",
"@types/axios": "^0.14.0",
"@types/bluebird-global": "^3.5.9",
"@types/chai": "^4.1.6",
"@types/dockerode": "^2.5.5",
"@types/get-stream": "^3.0.1",
"@types/http-proxy": "^1.16.2",
"@types/js-yaml": "^3.11.2",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/node": "^9.6.34",
"@types/npm": "^2.0.29",
"@types/steem-js-alpha": "https://github.com/wise-team/types-for-steem-js/raw/master/bin/types-steem-js-alpha-3.1.2.tgz",
"@types/tar-fs": "^1.16.1",
"axios": "^0.18.0",
"bluebird-global": "^1.0.1",
"broken-link-checker": "^0.7.8",
"chai": "^4.2.0",
"dockerode": "^2.5.7",
"get-stream": "^4.1.0",
"http-proxy": "^1.17.0",
"js-yaml": "^3.12.0",
"mocha": "^5.2.0",
"npm": "^6.4.1",
"steem": "^0.7.2",
"steem-wise-core": "^3.1.1",
"tar-fs": "^1.16.3",
"ts-node": "^6.2.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"devDependencies": {
"husky": "^0.14.3"
},
"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",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"test": "npm run check && npm run tslint && mocha -r ts-node/register src/tests/entrance.ts",
"diagnose-healthcheck": "npm run check && npm run tslint && mocha -r ts-node/register src/healthcheck/entrance.ts",
"healthcheck": "ts-node src/healthcheck.ts",
"healthcheck-compare-notify": "ts-node healthcheck/compare-and-notify.ts",
"testall": "npm run check && npm run tslint && mocha -r ts-node/register src/*/entrance.ts",
"commitmsg": "commitlint -E GIT_PARAMS"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wise-team/steem-wise-test.git"
},
"keywords": [
"steem",
"blockchain",
"wise"
],
"author": "The Wise Team (https://wise-team.io/)",
"contributors": [
"Jędrzej Lewandowski <jedrzejblew@gmail.com> (https://jedrzej.lewandowski.doctor/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wise-team/steem-wise-test/issues"
},
"homepage": "https://wise.vote/"
}