-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 918 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 918 Bytes
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
{
"name": "zero-width-watermark",
"description": "Module for embedding information in text using zero-width characters",
"keywords": [
"watermark",
"text",
"zero-width"
],
"version": "0.1.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": "github:redshoga/zero-width-watermark",
"homepage": "https://github.com/redshoga/zero-width-watermark",
"bugs": "https://github.com/redshoga/zero-width-watermark/issues",
"author": "redshoga <yui.ichioka.contact@gmail.com> (https://ichioka.tokyo)",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "jest"
},
"dependencies": {
"fast-text-encoding": "^1.0.3"
},
"devDependencies": {
"@types/fast-text-encoding": "^1.0.1",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}