-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
{
"name": "humanize-duration-ts",
"version": "0.0.0-development",
"description": "An implementation of Humanize Duration in typescript",
"scripts": {
"test": "karma start",
"lint": "eslint --fix 'src/**/*.ts'",
"test:watch": "karma start --no-single-run --auto-watch",
"build": "rollup -c",
"watch": "rollup -cw"
},
"repository": "https://github.com/Nightapes/HumanizeDuration.ts",
"keywords": [
"humanize-duration",
"typescript"
],
"author": "Sebastian Beisch",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nightapes/HumanizeDuration.ts/issues"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"homepage": "https://github.com/Nightapes/HumanizeDuration.ts",
"devDependencies": {
"@types/jasmine": "^3.5.9",
"@types/karma": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jasmine-core": "3.5.0",
"karma": "4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "3.1.1",
"karma-mocha-reporter": "2.2.5",
"karma-typescript": "^5.0.1",
"prettier": "^1.19.1",
"puppeteer": "^2.1.1",
"rollup": "^2.1.0",
"rollup-plugin-typescript2": "^0.26.0",
"typescript": "^3.8.3"
}
}