u32
Version:
32-bit unsigned integer math
62 lines (61 loc) • 1.53 kB
JSON
{
"name": "u32",
"version": "2.0.2",
"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.4.1"
},
"devDependencies": {
"@softwareventures/semantic-release-config": "3.1.0",
"@softwareventures/tsconfig": "7.0.0",
"@softwareventures/tslint-rules": "2.0.0",
"ava": "5.1.0",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"tslint": "6.1.3",
"typescript": "4.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"release": {
"extends": "@softwareventures/semantic-release-config"
}
}