-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
91 lines (91 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
{
"name": "2key-ratchet",
"version": "1.0.18",
"description": "2key-ratchet is an implementation of a Double Ratchet protocol and X3DH in TypeScript utilizing WebCrypto.",
"main": "dist/2key-ratchet.js",
"module": "dist/2key-ratchet.lib.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "mocha",
"prepare": "npm run build",
"clear": "rimraf dist/*",
"build": "npm run build:module && npm run build:types",
"build:module": "rollup -c",
"build:types": "tsc -p tsconfig.types.json",
"rebuild": "npm run clear && npm run build",
"lint": "tslint -p .",
"lint:fix": "tslint --fix -p .",
"prepub": "npm run lint && npm run build",
"postpub": "git push && git push --tags origin master",
"pub": "npm version patch && npm publish",
"prepub:next": "npm run lint && npm run build",
"pub:next": "npm version prerelease --preid=next && npm publish --tag next",
"postpub:next": "git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/2key-ratchet.git"
},
"keywords": [
"diffie-hellman",
"secp256r1",
"ecc",
"encryption",
"cryptography",
"webcrypto",
"session",
"integrity",
"messaging"
],
"author": "PeculiarVentures",
"contributors": [
"Miroshin Stepan<microshine@mail.ru>"
],
"license": "https://github.com/PeculiarVentures/2key-ratchet/blob/master/LICENSE.md",
"dependencies": {
"pvtsutils": "^1.0.10",
"tslib": "^1.13.0",
"tsprotobuf": "^1.0.15"
},
"devDependencies": {
"@peculiar/webcrypto": "^1.1.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^12.12.42",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.10.9",
"rollup-plugin-typescript2": "^0.26.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"html"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"spec": "test/**/*.ts"
}
}