{ "name": "solid-ui", "version": "2.1.1", "description": "UI library for writing Solid read-write-web applications", "main": "./lib/index.js", "types": "./lib/index.d.ts", "files": [ "lib", "dist" ], "scripts": { "build": "npm run clean && npm run build-version && npm run build-lib && npm run build-types && npm run build-webpack", "build-lib": "babel src -d lib --source-maps --extensions \".ts,.js\"", "build-types": "tsc --emitDeclarationOnly", "build-version": "sh ./timestamp.sh > src/versionInfo.ts && eslint \"src/versionInfo.ts\" --fix", "build-webpack": "webpack", "watch": "npm run build-version && babel src --out-dir lib --watch --source-maps --extensions \".ts,.js\"", "clean": "rm -rf lib", "coverage": "jest --coverage --collectCoverageFrom=src/**/*.[jt]s", "lint": "eslint \"src/**/*.js\" \"src/**/*.ts\" \"test/**/*.ts\"", "lint-fix": "eslint \"src/**/*.js\" \"src/**/*.ts\" --fix", "jest": "jest", "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch", "test": "npm run build && npm run lint && npm run jest", "doc": "typedoc --out ./Documentation/api/ ./src/ --stripInternal", "prepublishOnly": "npm test && npm run build", "postpublish": "git push origin master --follow-tags" }, "repository": { "type": "git", "url": "https://github.com/solid/solid-ui" }, "keywords": [ "solid", "decentralized", "widgets", "ui", "web", "rdf", "ldp", "linked", "data" ], "author": "Tim Berners-Lee ", "contributors": [ "Daniel Friedman " ], "license": "MIT", "bugs": { "url": "https://github.com/solid/solid-ui/issues" }, "homepage": "https://github.com/solid/solid-ui", "dependencies": { "@babel/runtime": "^7.10.3", "@types/node": "^13.13.12", "escape-html": "^1.0.3", "jss": "^10.3.0", "jss-preset-default": "^10.3.0", "mime-types": "^2.1.27", "node-uuid": "^1.4.7", "pane-registry": "^2.1.1", "rdflib": "^1.2.3", "solid-auth-client": "^2.4.1", "solid-auth-tls": "^0.1.2", "solid-namespace": "^0.3.0", "ts-jest": "^25.5.1" }, "devDependencies": { "@babel/cli": "^7.10.3", "@babel/core": "^7.10.3", "@babel/plugin-proposal-class-properties": "^7.10.1", "@babel/plugin-proposal-optional-chaining": "^7.10.3", "@babel/plugin-transform-async-to-generator": "^7.10.1", "@babel/plugin-transform-runtime": "^7.10.3", "@babel/preset-env": "^7.10.3", "@babel/preset-typescript": "^7.10.1", "@types/jest": "^25.2.3", "@types/jsdom": "^12.2.4", "@typescript-eslint/eslint-plugin": "^2.34.0", "@typescript-eslint/parser": "^2.34.0", "eslint": "^6.6.0", "eslint-plugin-jest": "^23.17.0", "husky": "^3.0.9", "jest": "^25.5.4", "jsdom": "^16.2.2", "lint-staged": "^10.2.11", "standard": "^14.3.4", "typedoc": "^0.16.11", "typescript": "^3.9.5", "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" ] } }