-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.24 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.24 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "timesolver",
"version": "1.2.0",
"description": "A small library for manipulating, validating and formatting JavaScript date object.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "jest --coverage",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sean1093/timeSolver.git"
},
"keywords": [
"javascript",
"date",
"time",
"datetime",
"timesolver",
"utilities",
"date-time",
"times",
"logging",
"console",
"format-javascript"
],
"author": "sean1093",
"license": "ISC",
"bugs": {
"url": "https://github.com/sean1093/timeSolver/issues"
},
"homepage": "https://github.com/sean1093/timeSolver#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"jest": "^30.3.0",
"jest-cli": "^30.3.0",
"rollup": "^2.80.0"
}
}