-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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": "calendary",
"version": "2.0.0",
"description": "Module to work easily with calendars in JS",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist/",
"format:check": "prettier --check \"src/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"test": "jest",
"tsc:init": "tsc --init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vcgtz/calendary.git"
},
"keywords": [
"calendar",
"dates",
"time",
"datetime",
"js"
],
"author": "Vicente Gutiérrez",
"license": "MIT",
"bugs": {
"url": "https://github.com/vcgtz/calendary/issues"
},
"homepage": "https://github.com/vcgtz/calendary#readme",
"devDependencies": {
"@jest/globals": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
}