-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "duration-pretty",
"version": "0.1.1",
"description": "A pure JavaScript library that parses duration time length to format display",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest --config jest.config.json",
"build": "tsc",
"prepublishOnly": "npm run test && npm run lint && npm run build",
"version": "git push && git push --tags",
"lint": "eslint --ext .jsx,.js,.ts,.tsx src/",
"prettier": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
},
"author": "Flcwl",
"keywords": [
"time",
"duration",
"format"
],
"license": "MIT",
"homepage": "https://github.com/Flcwl/duration-pretty",
"bugs": {
"url": "https://github.com/Flcwl/duration-pretty/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flcwl/duration-pretty.git"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}