-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.79 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
59
60
61
62
{
"name": "kronicle",
"version": "0.0.1",
"description": "A vanilla JavaScript event schedule component",
"main": "dist/event-schedule.cjs.js",
"module": "dist/event-schedule.esm.js",
"browser": "dist/event-schedule.umd.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types",
"src/styles.css"
],
"scripts": {
"dev": "rollup -c -w",
"test": "jest",
"build": "rollup -c && tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build",
"update-license-year": "python update_license.py"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/generator": "^7.25.7",
"@babel/parser": "^7.25.8",
"@babel/template": "^7.25.7",
"@babel/traverse": "^7.25.7",
"@babel/types": "^7.25.8",
"@rollup/plugin-typescript": "^8.5.0",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pretty-format": "^29.7.0",
"rollup": "^2.79.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^1.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.0",
"typescript": "^4.9.5",
"undici": "^6.20.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"keywords": [
"calendar",
"schedule",
"events",
"vanilla-js"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__template": "^7.4.4",
"@types/babel__traverse": "^7.20.6",
"@types/pretty-format": "^24.3.0",
"expect": "^29.7.0"
}
}