-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.32 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
{
"name": "chronometric",
"version": "1.0.2",
"description": "JavaScript library for working with time durations in \"1mo 1w 1d\" format.",
"main": "./dist/chronometric.umd.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build:tsc": "tsc -m es6 --outDir lib-esm",
"build": "webpack --mode=production",
"docs": "typedoc --options typedoc.json --exclude \"**/*+(e2e`|spec`|index).ts\" ./src --disableOutputCheck",
"docs:ci": "typedoc --options typedoc.json --exclude \"**/*+(e2e|spec|index).ts\" ./src --disableOutputCheck",
"test": "jest --env=node --colors --coverage test && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yukipastelcat/chronometric.git"
},
"author": "Kirill Sedunov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yukipastelcat/chronometric/issues"
},
"homepage": "https://github.com/yukipastelcat/chronometric#readme",
"devDependencies": {
"@types/jest": "^24.9.0",
"codecov": "^3.6.5",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"typedoc": "^0.16.6",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"keywords": [
"durations",
"time",
"datetime",
"typescript",
"front-end",
"back-end"
]
}