-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
117 lines (117 loc) · 2.83 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
{
"name": "apostille-library",
"version": "0.0.0",
"description": "A novel & holistic blockchain notarization and timestamping with transferable, updatable, branded, and conjointly owned notarizations.",
"keywords": [
"blockchain",
"nem",
"notarization",
"certificate",
"poe"
],
"homepage": "https://nem.io/wp-content/themes/nem/files/ApostilleWhitePaper.pdf",
"repository": {
"type": "git",
"url": "https://github.com/luxtagofficial/Apostille-library/"
},
"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 'src/**/*.ts' -e 'src/types/**'",
"test": "jest --coverage --verbose",
"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": "gimyboya <amine@luxtag.io>",
"contributors": [
{
"name": "gimyboya",
"email": "amine@luxtag.io"
},
{
"name": "aiz",
"email": "aiz@luxtag.io"
},
{
"name": "jeff",
"email": "jeff@luxtag.io"
},
{
"name": "Jonathan Tey",
"email": "jonathan@luxtag.io"
}
],
"license": "MIT",
"dependencies": {
"crypto-js": "^3.1.9-1",
"js-sha3": "^0.8.0",
"lodash": "^4.17.10",
"nem-sdk": "^1.6.7",
"nem2-sdk": "^0.13.1",
"rxjs": "^6.2.2"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/jest": "24.0.11",
"@types/lodash": "^4.14.113",
"@types/sinon": "7.0.11",
"codecov": "^3.0.4",
"commitizen": "3.0.7",
"commitlint": "7.5.2",
"cz-conventional-changelog": "^2.1.0",
"ghooks": "^2.0.4",
"jest": "^23.4.1",
"npm-run-all": "4.1.5",
"rimraf": "^2.6.2",
"semantic-release": "^15.8.1",
"sinon": "7.3.1",
"travis-deploy-once": "5.0.11",
"ts-jest": "24.0.2",
"tslint": "^5.11.0",
"typescript": "3.4.3",
"validate-commit-msg": "^2.14.0"
},
"resolutions": {
"request": "2.88.0"
},
"files": [
"dist"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run validate",
"commit-msg": "validate-commit-msg"
}
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"ts",
"tsx"
],
"coverageDirectory": "<rootDir>/tests/unit/coverage",
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"/types/"
],
"testMatch": null
}
}