-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "@mandel59/idstool",
"version": "1.6.0",
"description": "Manipurate CJK ideograph structures",
"repository": {
"type": "git",
"url": "https://github.com/mandel59/mojidata.git",
"directory": "packages/idstool"
},
"files": [
"bin/*.js",
"lib/*.js",
"lib/*.d.ts",
"idsfind.db",
"CHANGELOG.md",
"README.md",
"LICENSE.md"
],
"bin": {
"ids-decompose": "bin/ids-decompose.js",
"ids-find": "bin/ids-find.js"
},
"scripts": {
"test": "ava",
"prepare": "tsc && ts-node --files prepare.ts",
"publish": "yarn prepare && yarn npm publish --access public"
},
"author": "Ryusei Yamaguchi",
"license": "MIT",
"dependencies": {
"@mandel59/mojidata": "^1.6.0",
"better-sqlite3": "^8.2.0"
},
"devDependencies": {
"@types/node": "^16.9.1",
"ava": "^3.15.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"zx": "^4.2.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}