-
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.5 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.5 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": "u32",
"version": "0.0.0-development",
"description": "32-bit unsigned integer math",
"keywords": [
"int",
"int32",
"integer",
"math",
"u32",
"unsigned"
],
"author": "Daniel Cassidy <mail@danielcassidy.me.uk>",
"homepage": "https://github.com/softwareventures/u32",
"bugs": "https://github.com/softwareventures/u32",
"repository": "github:softwareventures/u32",
"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": {
"@softwareventures/array": "^0.31.0 || ^0.33.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"i32": "^0.3.0 || ^1.0.0 || ^2.0.0",
"tslib": "2.8.1"
},
"devDependencies": {
"@softwareventures/semantic-release-config": "4.1.0",
"@softwareventures/tsconfig": "7.3.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"
}
}