forked from wireapp/proteus.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"dependencies": {
"ed2curve": "0.2.1",
"libsodium-wrappers-sumo": "0.5.4",
"wire-webapp-cbor": "2.1.5"
},
"description": "Signal Protocol (with header encryption) implementation for JavaScript. Based on Proteus.js.",
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.9.0",
"jsdoc": "3.5.5",
"mocha": "2.5.3",
"tsd-jsdoc": "dcodeio/tsd-jsdoc#fe76c4dc071b00bb549d3af7a3bad8c555999e81",
"webpack": "3.7.1"
},
"homepage": "https://github.com/ceoimon/proteus-hd",
"license": "GPL-3.0",
"main": "src/proteus.js",
"name": "proteus-hd",
"repository": {
"type": "git",
"url": "git://github.com/ceoimon/proteus-hd.git"
},
"scripts": {
"dist": "webpack --progress",
"types": "jsdoc --verbose --pedantic --configure jsdoc.json src/ && node replace.js",
"lint": "eslint src/",
"preversion": "yarn lint && yarn test",
"prepublishOnly": "yarn dist",
"postversion": "git push && git push --tag",
"test": "mocha -s 30000 -t 30000 --recursive test/harness.js test --trace-warnings"
},
"types": "./proteus.d.ts",
"version": "1.0.4",
"files": [
"src",
"dist",
"proteus.d.ts"
]
}