-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "@markwhen/parser",
"version": "0.13.3",
"description": "Markwhen parser",
"type": "module",
"main": "cjs/index.js",
"exports": {
"require": "./cjs/index.js",
"import": "./lib/index.js"
},
"scripts": {
"test": "jest",
"test:verbose": "jest --verbose false --silent false",
"test:profile": "node --inspect-brk ./node_modules/jest/bin/jest.js",
"build": "tsc && vite build && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"prepublish": "tsc && jest",
"watch": "tsc-watch --onSuccess \"yalc push --update\"",
"bump": "node scripts/bumper.js patch",
"bump:major": "node scripts/bumper.js major",
"bump:minor": "node scripts/bumper.js minor",
"bump:patch": "node scripts/bumper.js patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mark-when/parser.git"
},
"keywords": [
"markwhen",
"parser",
"timeline"
],
"author": "Rob Koch",
"license": "MIT",
"bugs": {
"url": "https://github.com/mark-when/parser/issues"
},
"homepage": "https://github.com/mark-when/parser#readme",
"dependencies": {
"ical.js": "^1.5.0",
"lru-cache": "^11.0.0",
"luxon": "^3.4.4",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/luxon": "^2.3.2",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4",
"v8-profiler-next": "^1.9.0",
"vite": "^5.3.5",
"vite-plugin-dts": "^3.9.1"
},
"files": [
"lib/**/*",
"cjs/**/*"
]
}