UNPKG

solid-panes

Version:

Solid-compatible Panes: applets and views for the mashlib and databrowser

100 lines (99 loc) 3.08 kB
{ "name": "solid-panes", "version": "3.1.4", "description": "Solid-compatible Panes: applets and views for the mashlib and databrowser", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "build": "npm run clean && npm run build-version && npm run build-dist && npm run build-dev && npm run build-lib && npm run build-types", "build-browserified": "npm run build", "build-dist": "webpack --progress --colors --mode=production", "build-dev": "webpack --progress --colors --mode=development", "build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'", "build-types": "tsc --emitDeclarationOnly", "build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix", "watch": "npm run build-version && babel src -d lib --source-maps --extensions '.ts,.js' --watch", "clean": "rm -rf dist lib", "lint": "eslint 'src/**/*.js' 'src/**/*.ts'", "lint-fix": "eslint 'src/**/*.js' 'src/**/*.ts' --fix", "test": "npm run lint && jest", "test-watch": "npm run lint && jest --onlyChanged --watch", "prepublishOnly": "npm test && npm run build", "postpublish": "git push origin master --follow-tags" }, "repository": { "type": "git", "url": "https://github.com/solid/solid-panes" }, "keywords": [ "solid", "decentralized", "widgets", "ui", "web", "rdf", "ldp", "linked", "panes", "app", "data" ], "author": "Tim Berners-Lee <timbl@mit.edu>", "license": "MIT", "bugs": { "url": "https://github.com/solid/solid-panes/issues" }, "homepage": "https://github.com/solid/solid-panes", "dependencies": { "@babel/polyfill": "^7.10.4", "@solid/better-simple-slideshow": "^0.1.0", "babel-preset-env": "^1.6.1", "babel-preset-metalab": "^1.0.0", "chat-pane": "^2.1.2", "contacts-pane": "^2.1.0", "folder-pane": "^2.1.0", "issue-pane": "^2.2.0", "meeting-pane": "^2.1.1", "mime-types": "^2.1.27", "pane-registry": "^2.1.0", "rdflib": "^1.2.2", "solid-namespace": "^0.3.0", "solid-ui": "^2.1.0", "source-pane": "^2.1.0" }, "devDependencies": { "@babel/cli": "^7.10.4", "@babel/core": "^7.10.4", "@babel/preset-env": "^7.10.4", "@babel/preset-typescript": "^7.10.4", "@types/jest": "^24.0.18", "@types/webpack-env": "^1.15.2", "@typescript-eslint/eslint-plugin": "^2.34.0", "@typescript-eslint/parser": "^2.34.0", "babel-loader": "^8.1.0", "babel-plugin-inline-import": "^3.0.0", "babel-preset-es2015": "^6.24.1", "eslint": "^6.6.0", "fork-ts-checker-webpack-plugin": "^1.5.0", "husky": "^3.0.8", "jest": "^26.1.0", "lint-staged": "^10.2.11", "raw-loader": "^3.1.0", "standard": "^14.3.4", "ts-jest": "^24.0.2", "typescript": "^3.9.6", "webpack": "^4.43.0", "webpack-cli": "^3.3.12" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "npm test" } }, "lint-staged": { "src/**/*.(js|ts)": [ "eslint" ] } }