forked from signalapp/libsignal-protocol-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "libsignal-protocol",
"repository": "https://github.com/WhisperSystems/libsignal-protocol-javascript.git",
"version": "1.3.0",
"license": "GPL-3.0",
"scripts": {
"build": "grunt build",
"check": "npm run dist && npm run lint && npm run test",
"clean": "rm -rf node_modules",
"compile": "grunt compile",
"dev": "grunt dev",
"dist": "grunt concat:libsignalprotocol",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\" Gruntfile.js",
"lint": "eslint src/**/*.js test/**/*.js Gruntfile.js",
"test": "karma start karma.conf.js"
},
"dependencies": {
"bytebuffer": "^5.0.1",
"protobufjs": "^8.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^8.19.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"jquery": "^2.2.4",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^10.0.0",
"prettier": "^3.7.4"
}
}