-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "@MarketingPipeline/onthisdayjs",
"version": "2.0.0",
"description": "A JavaScript library for fetching historical events from Wikipedia.",
"main": "./dist/onthisday.min.js",
"files": [
"dist"
],
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"start": "node dist/onthisday.min.js",
"build": "webpack --config ./src/webpack.config.js"
},
"keywords": [
"javascript",
"library",
"wikipedia",
"events",
"dates",
"history",
"on-this-day",
"wtf-wikipedia",
"fetch"
],
"author": "Jared Van Valkengoed",
"license": "MIT",
"repository": "github:MarketingPipeline/OnThisDay.js",
"dependencies": {
"wtf_wikipedia": "10.1.5"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"babel-loader": "^9.1.3",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"bugs": {
"url": "https://github.com/MarketingPipeline/OnThisDay.js/issues"
},
"homepage": "https://github.com/MarketingPipeline/OnThisDay.js#readme"
}