-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "signal-decrypt",
"version": "0.1.0",
"author": "Nick Thurow <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"format": "yarn format:nowrite --write",
"format:nowrite": "prettier --ignore-path .gitignore \"**/*.+(js|ts|tsx|html|css|scss|json)\"",
"format:check": "yarn format:nowrite --list-different",
"pbjs": "pbjs -t static-module -w commonjs -o src/signal/index.js proto/signal.proto",
"pbts": "pbts -o src/signal/index.d.ts src/signal/index.js",
"build": "tsc",
"copy": "copy src/**/*.js src/**/*.d.ts build/",
"build:copy": "yarn build && yarn copy",
"test": "jest",
"start": "node ./build/src/index.js"
},
"dependencies": {
"hkdf": "^0.0.2",
"protobufjs": "^6.8.8",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "10",
"chalk": "^2.4.1",
"copy": "^0.3.2",
"escodegen": "^1.9.1",
"espree": "^3.5.4",
"estraverse": "^4.2.0",
"glob": "^7.1.2",
"jest": "^24.9.0",
"jsdoc": "^3.5.5",
"minimist": "^1.2.0",
"prettier": "^1.18.2",
"semver": "^5.5.0",
"tmp": "0.0.33",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2",
"uglify-js": "^3.3.25"
}
}