acsets
Version:
An implementation of acsets in typescript, compatible with ACSets.jl and pyacsets
50 lines (49 loc) • 1.41 kB
JSON
{
"name": "acsets",
"version": "0.1.0",
"description": "An implementation of acsets in typescript, compatible with ACSets.jl and pyacsets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"check-format": "prettier --check \"src/**/*.ts\"",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"docs": "typedoc --out docs src/index.ts"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AlgebraicJulia/ts-acsets.git"
},
"keywords": [
"databases",
"category-theory"
],
"author": "AlgebraicJulia",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlgebraicJulia/ts-acsets/issues"
},
"homepage": "https://github.com/AlgebraicJulia/ts-acsets#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
}
}