-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 865 Bytes
/
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
{
"name": "timespan-ts",
"version": "1.0.3",
"description": "A TypeScript version of dotnet's TimeSpan class",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssyrell/timespan-ts.git"
},
"keywords": [
"timespan",
"timespan-ts",
"timespan.ts",
"timespan-js",
"timespan.js",
"typescript",
"typescript timespan"
],
"author": "Steve Syrell",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssyrell/timespan-ts/issues"
},
"homepage": "https://github.com/ssyrell/timespan-ts#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}