-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 998 Bytes
/
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
{
"name": "forward-secrecy",
"version": "1.0.2",
"description": "Javascript implementation of the Axolotl key-ratcheting protocol using the NaCl crypto library",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel/register",
"build": "./node_modules/babel/bin/babel.js src/ --out-dir dist/",
"prepublish": "./node_modules/babel/bin/babel.js src/ --out-dir dist/"
},
"author": "",
"license": "MIT",
"dependencies": {
"node-machine-id": "^1.1.4",
"pbkdf2-sha256": "^1.1.0",
"tweetnacl": "^0.13.1"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-cli": "^6.24.1",
"babel-core": "^5.8.23",
"babel-eslint": "^4.1.0",
"browserify": "^14.4.0",
"eslint": "^1.2.1",
"eslint-config-standard": "^4.1.0",
"eslint-plugin-standard": "^1.3.0",
"jshint": "^2.9.4",
"mocha": "^2.2.5",
"should": "^7.1.0",
"should-promised": "^0.3.1"
}
}