-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "every-run",
"version": "1.0.2",
"description": "A package to record running log for runners who run everyday.",
"type": "module",
"main": "./dist/src/main.js",
"types": "./dist/src/main.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"bin": {
"every-run": "./dist/src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuma-matsui/every-run"
},
"keywords": [
"run",
"running",
"everyday"
],
"author": "yum",
"license": "MIT",
"dependencies": {
"@types/node": "^18.6.2",
"@types/sqlite3": "^3.1.8",
"commander": "^9.4.0",
"sqlite3": "^5.0.10",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-typescript": "^1.0.3",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-jest-resolver": "^2.0.0"
}
}