-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "date-diff",
"source": "src/date-diff.ts",
"main": "dist/date-diff.js",
"types": "dist/date-diff.d.ts",
"module": "dist/date-diff.module.js",
"description": "DateDiff is a minimalized Javascript date arithmetic extension.",
"version": "1.0.2",
"keywords": [
"DateDiff",
"Date diff",
"date arthmetic",
"Javascript Date",
"date-diff",
"subtract dates"
],
"repository": {
"type": "git",
"url": "git@github.com:melvinsembrano/date-diff.git"
},
"author": "Melvin Sembrano <melvinsembrano@gmail.com> (https://github.com/melvinsembrano/date-diff)",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "^2.0.0-rc.0",
"@parcel/transformer-typescript-tsc": "^2.0.0-nightly.845",
"@parcel/transformer-typescript-types": "^2.0.0-rc.0",
"@types/jest": "^27.0.2",
"jest": "^27.2.2",
"parcel": "^2.0.0-rc.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"test": "jest",
"build": "parcel build"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"<rootDir>/src/**/*.(test|spec).(ts|tsx|js)"
]
}
}