-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
87 lines (87 loc) · 2.8 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
{
"name": "airgap-coin-lib",
"version": "0.0.0",
"author": "Papers AG <[email protected]> (https://papers.ch)",
"license": "MIT",
"homepage": "https://www.airgap.it",
"repository": {
"type": "git",
"url": "https://github.com/airgap-it/airgap-coin-lib"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build-scripts": "tsc scripts/*.ts && lerna run build-scripts --stream",
"lint": "lerna run lint --stream",
"lint:prettier": "lerna run lint:prettier --stream",
"lint-ci": "lerna run lint-ci --stream",
"lint-ci:prettier": "lerna run lint-ci:prettier --stream",
"test": "lerna run test --stream",
"test:icp": "lerna run test --stream --scope @airgap/icp",
"test-ci": "lerna run test-ci --stream",
"sonar-scanner": "sonar-scanner",
"prepare": "husky install",
"install-test-dependencies": "node scripts/install-test-deps.js && npm install",
"install-build-dependencies": "node scripts/install-build-deps.js && npm install",
"generate-schemas": "./scripts/generate-schemas.sh",
"browserify": "lerna run browserify --stream",
"bump:version": "lerna version --no-git-tag-version",
"bump:major": "lerna version --no-git-tag-version major --yes",
"bump:minor": "lerna version --no-git-tag-version minor --yes",
"bump:patch": "lerna version --no-git-tag-version patch --yes",
"bump:beta": "lerna version --no-git-tag-version prerelease --preid beta --yes"
},
"devDependencies": {
"@types/node": "14.14.14",
"browserify": "17.0.0",
"husky": "5.1.3",
"lerna": "6.4.1",
"sonarqube-scanner": "2.8.0",
"typescript": "4.8.4"
},
"buildDependencies": {
"@types/node": "14.14.14",
"browserify": "17.0.0",
"husky": "5.1.3",
"lerna": "6.4.1",
"sonarqube-scanner": "2.8.0",
"typescript": "4.8.4"
},
"testDependencies": {
"@types/assert": "0.0.31",
"@types/bip39": "2.4.0",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/ethereumjs-util": "5.2.0",
"@types/jasmine": "2.8.9",
"@types/mocha": "5.2.5",
"@types/pako": "1.0.1",
"@types/semver": "6.0.2",
"@types/underscore": "1.8.9",
"@polkadot/util": "2.0.1",
"ajv": "6.10.2",
"axios": "0.20.0",
"axios-mock-adapter": "^1.18.2",
"browserify": "16.5.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"node-fetch": "2.2.0",
"nyc": "12.0.2",
"prettier": "2.2.1",
"pretty-quick": "2.0.1",
"qrcode-terminal": "0.12.0",
"semver": "6.3.0",
"sinon": "6.3.5",
"tsconfig-paths": "4.1.2",
"ts-json-schema-generator": "0.56.0",
"ts-node": "8.5.0",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-config-valorsoft": "2.2.1"
}
}