@jeswr/prefixcc
Version:
A utility library to lookup prefixes and uris on prefixcc
102 lines (101 loc) • 2.22 kB
JSON
{
"name": "@jeswr/prefixcc",
"version": "1.2.1",
"description": "A utility library to lookup prefixes and uris on prefixcc",
"main": "dist/index.js",
"types": "dist/index.d.js",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"test": "jest",
"lint": "eslint lib/* __tests__/* --ext .ts",
"lint:fix": "eslint lib/* __tests__/* --ext .ts --fix",
"build": "tsc",
"prepare": "tsc",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jeswr/prefixcc.js"
},
"keywords": [
"prefix",
"prefix.cc",
"RDF",
"prefixes",
"URI",
"Solid"
],
"author": "Jesse Wright <jesse.wright@anu.edu.au>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeswr/prefixcc.js/issues"
},
"homepage": "https://github.com/jeswr/prefixcc.js#readme",
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"node-fetch": "^3.3.0",
"pre-commit": "^1.2.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"pre-commit": [
"lint",
"build",
"test"
],
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}