-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.6 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
{
"name": "orbit-encoder",
"version": "2.1.0",
"description": "ORBIT-ENCODER is an utility library for Data Compression and Encoding. It can take whatever object you give him as argument and returns a compressed encoded string. It provides a decoding method too. It uses a modified version of LZString for UTF16 Compression.",
"main": "lib/OrbitEncoder.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"core/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test",
"prepare": "npm run build",
"preversion": "npm run lint",
"xversion": "npm run format && npm --no-git-tag-version version minor",
"gitupdate": "git add . && git commit -m \"🟢 RELEASING V %npm_package_version% ✨\" && git push origin main --tags ",
"release": "npm run xversion && npm run gitupdate && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitturner/ORBIT-ENCODER.git"
},
"keywords": [
"Encoding",
"Compression",
"Decoding",
"String"
],
"author": "Orbit Turner",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitturner/ORBIT-ENCODER/issues"
},
"homepage": "https://github.com/orbitturner/ORBIT-ENCODER#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^29.5.7",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.2.2"
},
"dependencies": {
"buffer": "^6.0.3"
}
}