-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.57 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
{
"name": "korean-business-day",
"version": "3.4.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 --",
"prepare": "husky"
},
"devDependencies": {
"@croquiscom/eslint-config": "^3.0.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.9",
"chai": "^5.1.2",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"post-merge-install": "^0.4.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,ts}": "eslint",
"*": "prettier --write --ignore-unknown"
}
}