-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 991 Bytes
/
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": "@mandel59/mojidata-cli",
"version": "1.6.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/mandel59/mojidata.git",
"directory": "packages/mojidata-cli"
},
"files": [
"bin/*.js",
"README.md",
"LICENSE.md"
],
"bin": {
"ivs-list": "bin/ivs-list.js",
"mojidata": "bin/mojidata.js",
"mojidata-variants": "bin/mojidata-variants.js"
},
"scripts": {
"test": "ava",
"prepare": "tsc",
"publish": "yarn prepare && yarn npm publish --access public"
},
"author": "Ryusei Yamaguchi",
"license": "MIT",
"dependencies": {
"@mandel59/mojidata": "^1.6.1",
"better-sqlite3": "^8.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.4.0",
"@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"
]
}
}