This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"version": "2.1.0",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"codacy-coverage": "^2.0.0",
"mocha": "^3.1.2",
"browserify":"^13.1.1"
},
"dependencies": {
"big-integer": "^1.6.16",
"chai-things": "^0.2.0",
"hashmap": "^2.0.6",
"lz-string": "^1.4.4",
"mocha": "^3.2.0",
"node-rsa": "^0.4.2",
"zaes-js": "^2.0.0"
},
"name": "sttp",
"description": "STTP - new generation Secure TBM Transfer Protocol. STTP works over HTTP and it very similar to TLS. It is a kind of poor copy of HTTPS.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"lint": "eslint .",
"compile": "npm run lint && npm test",
"analyze-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec ",
"send-coverage":"cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage",
"coverage":"npm run analyze-coverage && npm run send-coverage",
"browserify": "browserify index.js --s sttp -o bundle.sttp.js",
"prepublish": "npm run compile && npm run browserify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alikhil/sttp.git"
},
"keywords": [
"sttp",
"encryption",
"compression",
"protocol"
],
"author": {
"name": "Alik Khilazhev",
"email": "alikhil@mail.ru"
},
"contributors": [
{
"name": "Kevin Khanda",
"email": "kevin.khanda@gmail.com"
},
{
"name": "Sergey Strokov",
"email": "Sergey_umnov@mail.ru"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alikhil/sttp/issues"
},
"homepage": "https://github.com/alikhil/sttp#readme"
}