-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@softwareventures/duration",
"version": "0.0.0-development",
"description": "Data type representing a duration of time",
"keywords": [
"duration",
"time",
"typescript"
],
"author": "Daniel Cassidy <mail@danielcassidy.me.uk>",
"homepage": "https://github.com/softwareventures/duration",
"bugs": "https://github.com/softwareventures/duration/issues",
"repository": "github:softwareventures/duration",
"license": "ISC",
"scripts": {
"fix": "tsc --noEmit && tslint --fix --project .",
"lint": "tsc --noEmit && tslint --project .",
"prepare": "tsc",
"semantic-release": "semantic-release",
"test": "ava"
},
"sideEffects": false,
"engines": {
"node": "^14 || ^16 || >=18"
},
"dependencies": {
"@types/is-finite": "^1.0.0",
"@types/is-integer": "^1.0.0",
"@types/math-trunc": "^1.0.0",
"is-finite": "^1.0.2",
"is-integer": "^1.0.7",
"math-trunc": "^1.0.1"
},
"devDependencies": {
"@softwareventures/semantic-release-config": "4.1.0",
"@softwareventures/tsconfig": "9.0.0",
"@softwareventures/tslint-rules": "2.0.0",
"ava": "5.3.1",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "19.0.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "5.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"release": {
"extends": "@softwareventures/semantic-release-config"
}
}