forked from year-calendar/js-year-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "js-year-calendar",
"version": "1.0.2",
"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/js-year-calendar.ts --out docs --mode file --target ES6 --excludePrivate --excludeProtected"
},
"pre-commit": [
"build",
"test"
],
"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/",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-umd": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.0.0",
"gulp-less": "^4.0.1",
"gulp-rename": "^1.4.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.1",
"jest": "^25.2.3",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"jest": {
"testMatch": [
"**/tests/*.[jt]s?(x)"
],
"collectCoverage": true
}
}