is-graph-pointer
Version:
Check what a graph pointer is pointing at
58 lines (57 loc) • 1.29 kB
JSON
{
"name": "is-graph-pointer",
"version": "2.2.0",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"lint": "eslint --quiet --ext .ts --ignore-path .gitignore",
"test": "c8 --all --reporter=lcov mocha test/*.test.ts",
"prepack": "tsc",
"release": "changeset publish"
},
"keywords": [
"clownface",
"graph pointer",
"rdf/js"
],
"author": "Tomasz Pluskiewicz",
"license": "MIT",
"files": [
"*.js",
"*.d.ts"
],
"dependencies": {
"@types/clownface": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@tpluscode/eslint-config": "0.6",
"@tpluscode/rdf-ns-builders": "3 - 5",
"@types/chai": "^5",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@zazuko/env": "^3.0.1",
"c8": "^7.11.0",
"chai": "^5",
"eslint-import-resolver-typescript": "^4.4.1",
"husky": "^7.0.4",
"mocha": "^11.5.0",
"tsx": "^4",
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "https://github.com/tpluscode/is-graph-pointer"
},
"mocha": {
"require": "tsx"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix --quiet"
]
}
}