-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "wiz-calendar",
"version": "1.0.12",
"description": "巫师万年历是一款采用天文算法实现的高精度万年历模块。提供了简便易用的API,清晰易读的面向对像代码设计,可以很容易地开发一个万年历和进行历法研究。",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"dist": "dist",
"doc": "doc"
},
"scripts": {
"test": "jest --coverage",
"build1": "tsc --build",
"build": "webpack",
"dev": "webpack-dev-server --open",
"start": "webpack serve --open",
"clean": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/songgz/wiz-calendar.git"
},
"author": "songgz",
"license": "ISC",
"bugs": {
"url": "https://github.com/songgz/wiz-calendar/issues"
},
"homepage": "https://github.com/songgz/wiz-calendar#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.0.3",
"ts-jest": "^27.0.2",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-ci": "^1.0.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.7.1"
}
}