-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "wareki-utils",
"packageManager": "[email protected]",
"version": "1.0.2",
"description": "The provided functions to convert between Japanese era (和暦) and Western calendar (西暦)",
"main": "dist/index.js",
"files": [
"src",
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint:js": "eslint --ext \".js,.ts\" --ignore-path .gitignore ./src",
"lint:prettier": "prettier --check . --config .prettierrc --ignore-path .prettierignore",
"lint": "npm run lint:js && npm run lint:prettier",
"lint:fix": "prettier --write --list-different . && npm run lint:js --fix"
},
"keywords": [
"wareki",
"date"
],
"author": "Kazuhiro Kobayashi",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-jest": "^29.4.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kzhrk/wareki-utils.git"
},
"bugs": {
"url": "https://github.com/kzhrk/wareki-utils/issues"
},
"homepage": "https://github.com/kzhrk/wareki-utils#readme"
}