-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.36 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
{
"name": "symbol-secret-sharing",
"version": "0.0.3",
"description": "Sharding Symbol private keys using Shamir secret sharing.",
"keywords": [
"blockchain",
"symbol",
"catapult",
"cryptography"
],
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/iodlt/symbol-secret-sharing"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"prebuild": "rimraf dist",
"prebuild:watch": "rimraf dist",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch",
"validate": "npm-run-all --parallel lint test",
"report-coverage": "cat ./tests/unit/coverage/lcov.info | codecov",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"author": "Bader Youssef",
"contributors": [
{
"name": "Bader Youssef"
}
],
"license": "MIT",
"dependencies": {
"@types/crypto-js": "^3.1.47",
"@types/es6-promise": "^3.3.0",
"commitizen": "^2.10.1",
"crypto-js": "^3.3.0",
"js-sha3": "^0.7.0",
"npm-run-all": "^4.1.5",
"rxjs": "^6.6.3",
"secrets.js-grempe": "^1.1.0"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/sinon": "^5.0.7",
"codecov": "^3.8.0",
"commitlint": "^6.2.0",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"jest": "^22.4.4",
"rimraf": "^2.7.1",
"semantic-release": "^15.14.0",
"sinon": "^5.1.1",
"symbol-sdk": "^0.21.0",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^22.4.6",
"tslint": "^5.20.1",
"typescript": "^2.9.2",
"validate-commit-msg": "^2.14.0"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run validate",
"commit-msg": "validate-commit-msg"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageDirectory": "<rootDir>/tests/unit/coverage",
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts"
],
"testURL": "http://localhost/"
}
}