-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (43 loc) · 1.4 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
{
"name": "@privacyresearch/libsignal-protocol-typescript",
"version": "0.0.16",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/privacyresearchgroup/libsignal-protocol-typescript",
"author": "Rolfe Schmidt <[email protected]>",
"license": "GPL-3.0-only",
"scripts": {
"test": "jest --config jestconfig.json",
"lint": "eslint -c .eslintrc.js '**/*.ts'",
"format": "prettier '**/{*.{js?(on),ts?(x),md},.*.js?(on)}' --write --list-different --config prettier.config.js",
"prepare": "yarn run build",
"build": "tsc -d",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint && yarn test",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/base64-js": "^1.3.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"@privacyresearch/curve25519-typescript": "^0.0.12",
"@privacyresearch/libsignal-protocol-protobuf-ts": "^0.0.9",
"base64-js": "^1.5.1"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"lib/internal/**/*"
]
}