ownfiles
Version:
A library to manage files in a Solid User's Pod
76 lines (75 loc) • 2.11 kB
JSON
{
"name": "ownfiles",
"version": "1.2.67",
"description": "A library to manage files in a Solid User's Pod",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "yarn run build && mocha -r ts-node/register --timeout=50000 test/*.test.ts",
"lint": "eslint src/* test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0wntech/ownfiles.git"
},
"keywords": [
"Solid",
"Linked",
"Data",
"Javascript"
],
"author": "Ludwig Schubert",
"license": "ISC",
"bugs": {
"url": "https://github.com/0wntech/ownfiles/issues"
},
"homepage": "https://github.com/0wntech/ownfiles#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mime": "^2.0.3",
"@types/mocha": "^8.0.3",
"@types/rdflib": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"assert": "^2.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.0",
"prettier": "^1.19.1",
"solid-auth-cli": "^1.0.12",
"ts-node": "^9.0.0"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test",
"pre-push": "lint-staged && npm version patch && npm publish"
}
},
"dependencies": {
"cuid": "^2.1.8",
"mime": "^2.4.4",
"ownuser": "^1.2.1",
"rdflib": "1.3.1",
"request": "^2.88.0",
"typescript": "^4.0.2",
"url": "^0.11.0"
}
}