contacts-pane
Version:
Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.
75 lines (74 loc) • 2.12 kB
JSON
{
"name": "contacts-pane",
"version": "2.6.13",
"description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
"main": "./contactsPane.js",
"scripts": {
"build": "npm run clean && npm run build-lib",
"clean": "rm -rf lib",
"build-lib": "mkdir lib && make && npx tsc-transpile-only src/*.ts --outDir lib",
"lint": "eslint '*.js'",
"lint-fix": "eslint '*.js' --fix",
"test": "npm run lint && npm run build && npx tsc --target es2015 --moduleResolution node --allowSyntheticDefaultImports __tests__/unit/*.ts && jest __tests__/unit/*test.ts",
"jest": "jest __tests__/unit/*test.ts",
"ignore:prepublishOnly": "npm run lint && npm run build && npm run jest",
"ignore:postpublish": "git push origin main --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/contacts-pane"
},
"keywords": [
"solid",
"contacts",
"addressbook",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/contacts-pane/issues"
},
"homepage": "https://github.com/solid/contacts-pane",
"dependencies": {
"solid-ui": "^2.5.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.4.3",
"typescript": "^5.7.3",
"typescript-transpile-only": "0.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}