forked from jshor/datebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.89 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "datebook",
"version": "6.1.0",
"description": "Generates URLs and downloads ICS files for adding events to popular calendar apps.",
"keywords": [
"icalendar",
"google calendar",
"ics",
"yahoo calendar",
"outlook",
"calendar",
"event"
],
"repository": {
"type": "git",
"url": "https://github.com/AnthonySummers/datebook"
},
"author": "Josh Shor <jpshor@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnthonySummers/datebook/issues"
},
"homepage": "https://datebook.dev",
"scripts": {
"build": "tsc && webpack",
"test": "jest",
"lint": "yarn eslint ./src",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"typedoc": "typedoc --out build/typedoc",
"commit": "yarn git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"release": "standard-version -n"
},
"main": "datebook.js",
"types": "index.d.ts",
"dependencies": {
"file-saver": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@johmun/vue-tags-input": "^2.1.0",
"@types/file-saver": "^2.0.1",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"codecov": "^3.7.2",
"commitizen": "^3.1.1",
"eslint": "^7.9.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"query-string": "^6.13.2",
"standard-version": "^8.0.1",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"typedoc": "^0.19.1",
"typescript": "^4.0.2",
"vuepress": "^1.5.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn lint && yarn test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}