-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "ymdhis",
"version": "0.1.0",
"description": "A date time library for TypeScript / JavaScript.",
"main": "lib/index.js",
"files": [
"lib",
"esm",
"umd"
],
"scripts": {
"test": "TZ=Asia/Singapore jest --coverage",
"build": "tsc -p tsconfig.cjs.json & tsc -p tsconfig.esm.json & webpack",
"lint": "eslint 'src/**/*.ts'",
"fmt": "eslint --fix 'src/**/*.ts' && prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yudwig/ymdhis.git"
},
"keywords": [
"date"
],
"author": "yudwig",
"license": "MIT",
"bugs": {
"url": "https://github.com/yudwig/ymdhis/issues"
},
"homepage": "https://github.com/yudwig/ymdhis#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}