-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "@kotonosora-tech/date-utils",
"version": "1.0.12",
"description": "A small tool calculator calendar in month",
"keywords": [
"date",
"calendar",
"date-utils",
"utils"
],
"homepage": "https://github.com/KotonoSora/date-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/KotonoSora/date-utils.git"
},
"license": "MIT",
"author": {
"name": "Nguyễn Duy Thắng",
"url": "https://github.com/KotonoSora"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"types": "tsc src/index.ts --declaration --emitDeclarationOnly --esModuleInterop --outDir dist",
"build": "npm run build.clean && npm run build.only && npm run types",
"build.only": "rollup -c",
"build.watch": "rollup -c -w",
"build.clean": "rimraf dist",
"test": "jest",
"test.log": "jest --coverage",
"test.showlog": "open ./coverage/lcov-report/index.html",
"eslint": "eslint src/**",
"eslint.fix": "eslint src/** --fix"
},
"dependencies": {
"date-fns": "^2.28.0"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"bug": {
"url": "https://github.com/KotonoSora/date-utils/issues"
}
}