-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
53
{
"name": "isodate-lite",
"version": "1.0.0",
"description": "A lightweight tool to convert object value between date objects and ISO8601 strings. Useful when storing objects in AWS DynamoDB.",
"author": {
"name": "Michael McHugh",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/mrmchugh/"
},
"keywords": [
"iso8601",
"dates",
"typescript",
"dynamodb",
"aws",
"gts"
],
"homepage": "https://tacticallimit.github.io/isodate-lite/",
"bugs": "https://github.com/TacticalLimit/isodate-lite/issues",
"repository": {
"type": "git",
"url": "https://github.com/TacticalLimit/isodate-lite"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src",
"LICENSE.txt"
],
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check",
"docs": "typedoc"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^10.0.3",
"eslint": "^7.20.0",
"eslint-plugin-jest": "^24.1.3",
"gts": "^2.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typedoc": "^0.20.29",
"typescript": "^4.2.3"
}
}