forked from Paul-DS/bootstrap-year-calendar
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
61 lines (61 loc) · 1.44 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
{
"name": "js-year-calendar",
"version": "2.0.0",
"description": "A fully customizable year calendar widget",
"main": "./dist/js-year-calendar.js",
"scripts": {
"watch": "gulp watch",
"build": "gulp build",
"prepare": "npm run build && npm run test && npm run doc",
"test": "jest",
"doc": "typedoc src/ts"
},
"pre-commit": [
"build",
"test"
],
"files": [
"dist",
"locales"
],
"repository": {
"type": "git",
"url": "git+https://github.com/year-calendar/js-year-calendar.git"
},
"keywords": [
"calendar",
"year",
"javascript",
"widget"
],
"author": "Paul-DS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/year-calendar/js-year-calendar/issues"
},
"homepage": "https://year-calendar.github.io/",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-umd": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"jest": "^27.0.6",
"typedoc": "^0.19.2",
"typescript": "^4.0.8"
},
"jest": {
"testMatch": [
"**/tests/*.[jt]s?(x)"
],
"collectCoverage": true,
"testEnvironment": "jsdom"
}
}