forked from gigosa/format-duration-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
54
55
56
57
58
59
60
61
{
"name": "format-duration-time",
"version": "1.5.0",
"description": "This is a package to format duration.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint src/** --ext .ts",
"lint:fix": "eslint src/** --ext .ts --fix"
},
"author": "gigosa",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"codecov": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"typescript": "^3.4.2"
},
"keywords": [
"duration",
"time",
"format"
],
"repository": {
"type": "git",
"url": "https://github.com/gigosa/format-duration-time"
},
"dependencies": {},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/*.+(ts|tsx|js)"
]
}
}