-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "calendar-bits",
"version": "1.0.0",
"description": "Lightweight calendar data generator",
"keywords": [
"calendar",
"generator",
"date",
"year",
"month",
"builder"
],
"author": "Uche <thesimplearchitect@gmail.com>",
"homepage": "https://github.com/uche789/calendar-bits#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uche789/calendar-bits.git"
},
"bugs": {
"url": "https://github.com/uche789/calendar-bits/issues"
},
"scripts": {
"develop": "NODE_ENV=development webpack --config webpack.config.js",
"build:lib": "NODE_ENV=production webpack --config webpack.config.js",
"declaration": "tsc --declaration --emitDeclarationOnly",
"build": "yarn declaration && yarn build:lib",
"build:local": "yarn build && yarn pack",
"test": "jest",
"changelog": "standard-version"
},
"main": "./dist/calendarBits.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
"@types/node": "^20.12.5",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"regenerator-runtime": "^0.14.1",
"standard-version": "^9.5.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.4",
"webpack": "5.91.0",
"webpack-cli": "5.1.4"
},
"dependencies": {}
}