-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "encoding-algorithms",
"version": "1.0.4",
"description": "Set of Shennon-Fano, Elias gamma, Huffman and Unary encoding algorithms written in functional JS",
"bin": {
"shennon-fano-coding": "dist/bin/shennon-fano-coding.js",
"elias-gamma-coding": "dist/bin/elias-gamma-coding.js",
"huffman-coding": "dist/bin/huffman-coding.js",
"unary-coding": "dist/bin/unary-coding.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RukkiesMan/encoding-algorithms.git"
},
"bugs": {
"url": "https://github.com/RukkiesMan/encoding-algorithms/issues"
},
"homepage": "https://github.com/RukkiesMan/encoding-algorithms#readme",
"dependencies": {
"decimal-to-binary": "^1.0.3",
"lodash": "^4.17.11",
"readline-sync": "^1.4.9"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3"
},
"scripts": {
"test": "eslint src",
"build": "NODE_ENV=production babel src --out-dir dist --source-map inline",
"start": "npm run build && node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"encoding",
"algorithm",
"encoding-algorithm",
"encoding-algorithms",
"shennon-fano",
"elias-gamma",
"huffman",
"unary"
],
"author": "Alekseev Pavel <pavelekseev@gmail.com>",
"license": "MIT"
}