-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.54 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@zhengxs/calendar-data",
"version": "0.1.0-rc.2",
"description": "Calendar data generator",
"main": "./dist/calendar-data.js",
"module": "./dist/calendar-data.esm.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"keywords": [
"calendar",
"data"
],
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -cw rollup.config.js",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"doc": "typedoc --options typedoc.js",
"lint": "prettier . -cw",
"format": "prettier . -w",
"test": "jest",
"test:watch": "jest --watch",
"cov": "jest --coverage",
"ci": "jest --coverage ----coverageReporters=json",
"preversion": "npm run lint && npm test",
"postversion": "git push --follow-tags origin main",
"prepublishOnly": "npm run build",
"release": "npm version minor && npm publish && gh-pages -d ./doc -t",
"canary": "npm publish --tag=next",
"beta": "npm publish --tag=beta"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,ts,md}": [
"prettier -cw"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE"
],
"peerDependencies": {
"tslib": "^2.0.3"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/lodash": "^4.14.166",
"@types/power-assert": "^1.5.3",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"dayjs": "^1.9.7",
"husky": "^4.2.3",
"jest": "^26.0.1",
"lint-staged": "^10.0.8",
"lodash": "^4.17.20",
"parse-pkg-name": "^2.0.0",
"power-assert": "^1.6.1",
"prettier": "^2.0.5",
"rollup": "^2.1.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^9.0.0",
"rollup-plugin-node-externals": "^2.1.3",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-visualizer": "^4.0.4",
"ts-jest": "^26.0.0",
"tslib": "^2.0.3",
"typedoc": "^0.19.2",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "^4.1.3"
},
"homepage": "https://zhengxs2018.github.io/calendar-data/",
"repository": {
"type": "git",
"url": "https://github.com/zhengxs2018/calendar-data"
},
"author": {
"name": "zhengxs",
"email": "zhengxs2018@foxmail.com"
},
"license": "MIT"
}