-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.8 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@amaui/huffman-code",
"version": "1.0.4",
"description": "Huffman code",
"repository": "https://github.com/amaui-org/amaui-huffman-code.git",
"author": "Lazar <lazareric2@gmail.com>",
"license": "MIT",
"private": false,
"main": "./src/index.ts",
"keywords": [
"huffman",
"huffman-coding",
"huffman-algorithm",
"huffman-tree",
"huffman-compression-algorithm",
"algorithm",
"heap",
"max-heap",
"bst",
"binary-tree",
"binary-search-tree",
"text-compression",
"binary-compression",
"byte-compression",
"compress",
"compression",
"frontend",
"front-end",
"backend",
"back-end",
"web",
"browser",
"javascript",
"js",
"typescript",
"node",
"nodejs",
"library",
"amaui",
"utils"
],
"scripts": {
"prebuild": "rimraf build",
"build": "node utils/js/build.js",
"release": "yarn build && yarn version --patch --no-git-tag-version && yarn build && cd ./build && npm publish",
"lint": "tslint -c tslint.json -p tsconfig.json",
"type": "tsc --noEmit -p tsconfig.json",
"cov": "cross-env NODE_ENV=test amaui-test",
"test:pre": "pm2 update && pm2 delete all && pm2 start utils/js/test/app.js && wait-on http://localhost:4000",
"test:post": "pm2 delete all",
"test": "yarn lint && yarn type && yarn build && yarn test:pre && yarn cov && yarn test:post"
},
"dependencies": {
"@amaui/date": "^1.1.11",
"@amaui/utils": "^1.1.18",
"@babel/runtime": "^7.18.3"
},
"devDependencies": {
"@amaui/models": "^1.0.1",
"@amaui/test": "^1.0.1141",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@types/node": "^16.11.10",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"playwright": "^1.17.1",
"pm2": "^5.1.2",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.2",
"wait-on": "^6.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"sideEffects": false,
"engines": {
"node": ">=12.0.0",
"yarn": ">=1.22"
}
}