-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "tiny-string-js",
"version": "1.0.2",
"private": false,
"description": "Compress a string or dataset using a dictionary",
"main": "tiny-string.js",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"typescript": "3.7.2",
"@types/jest": "^24.0.24",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"jest": "^24.9.0",
"sinon": "^7.5.0",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1"
},
"scripts": {
"test": "jest tests/*",
"build": "npm run build:main && npm run build:demo",
"build:main": "tsc tiny-string.ts",
"build:demo": "tsc tests/usage.ts",
"watch": "tsc -w tiny-string.ts",
"test-usage": "node tests/usage.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmox/tiny-string.git"
},
"keywords": [
"tiny-string",
"compress",
"smaz",
"dictionary",
"compression",
"utf8",
"encode"
],
"author": "Daniel Moxon (dancmox@comcast.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcmox/tiny-string/issues"
},
"homepage": "https://github.com/dcmox/tiny-string#readme"
}