-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "korean-business-day",
"version": "3.6.0",
"description": "Node module for korean business days",
"type": "module",
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/croquiscom/korean-business-day.git"
},
"author": "Sangmin Yoon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/croquiscom/korean-business-day/issues"
},
"homepage": "https://github.com/croquiscom/korean-business-day",
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "rimraf lib && tsc -b src/tsconfig.build.cjs.json src/tsconfig.build.esm.json && echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json",
"doc": "./builddoc.sh",
"lint": "eslint .",
"test:type": "tsc --noEmit",
"test:unit": "mocha -n import=tsx ./test/*.ts",
"test": "npm run test:type && npm run lint && npm run test:unit --",
"test:cov": "c8 npm run test",
"prepare": "husky",
"changeset": "changeset",
"release": "npm run lint && npm run build && npm run changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@croquiscom/eslint-config": "^3.1.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"c8": "^10.1.3",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"mocha": "^11.0.1",
"post-merge-install": "^0.4.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typedoc": "^0.27.5",
"typescript": "^5.7.2"
},
"c8": {
"extension": [
".ts"
],
"reporter": [
"lcov"
]
},
"lint-staged": {
"*.{js,ts}": "eslint",
"*": "prettier --write --ignore-unknown"
}
}