-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "calendar-builder",
"version": "0.6.2",
"description": "Provides all logic you need for building a calendar or datetime-picker.",
"author": "Michael Bøcker-Larsen <[email protected]>",
"repository": "https://github.com/mblarsen/calendar-builder",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"calendar",
"date",
"date-picker",
"datetime",
"datetime-picker"
],
"main": "./dist/commonjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/tsc/main.d.ts",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build": "npm run build:esm",
"build:all": "npm run clean && npm run build && npm run build:commonjs",
"build:esm": "tsc -p tsconfig.json",
"build:commonjs": "tsc -p tsconfig.commonjs.json",
"preversion": "npm run build:all"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"prettier": {}
}