-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 KB
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
{
"name": "date2string",
"version": "1.3.0",
"description": "A JavaScript implementation of the PHP date_format function",
"author": "Marc-Oliver Stühmer <stuehmer@codefoo.org>",
"license": "MIT",
"homepage": "https://github.com/tiger42/date2string#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tiger42/date2string.git"
},
"main": "date2string.js",
"types": "date2string.d.ts",
"keywords": [
"date",
"time",
"timestamp",
"format",
"iso8601",
"string",
"php"
],
"bugs": {
"url": "https://github.com/tiger42/date2string/issues"
},
"scripts": {
"generate-uglify-options": "node ./scripts/generate-uglify-options.js",
"build": "npm run generate-uglify-options && babel date2string.js | uglifyjs -o date2string.min.js --config-file uglify.json"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"core-js": "^3.23.4",
"uglify-js": "^3.16.2"
}
}