UNPKG

concordialang-ui-core

Version:
74 lines (73 loc) 1.8 kB
{ "name": "concordialang-ui-core", "version": "0.2.3", "description": "The Concordia UI Prototyper core", "license": "AGPL-3.0", "author": "The Concordia UI Prototyper Team", "readme": "README.md", "homepage": "https://github.com/concordialang/ui-core#readme", "repository": { "type": "git", "url": "git+https://github.com/concordialang/ui-core.git" }, "bugs": { "url": "https://github.com/concordialang/ui-core/issues" }, "keywords": [ "concordia", "concordia-lang", "concordialang", "ui", "user-interface", "core" ], "main": "dist", "types": "dist", "files": [ "dist/*" ], "scripts": { "prepare": "npm run build", "build": "rimraf dist && tsc", "test": "jest --passWithNoTests", "dev": "tsc -w" }, "dependencies": { "database-js": "^3.0.8", "database-js-json": "^1.2.1" }, "devDependencies": { "@types/jest": "^24.0.11", "@types/node": "^11.13.4", "dedent": "^0.7.0", "husky": "^1.3.1", "jest": "^24.5.0", "lint-staged": "^8.1.5", "memfs": "^2.15.2", "prettier": "1.16.4", "rimraf": "^2.6.3", "ts-jest": "^24.0.0", "typescript": "^3.3.3333" }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "moduleFileExtensions": [ "ts", "js" ], "testRegex": "test/.+\\.spec\\.ts$" }, "husky": { "hooks": { "pre-commit": "npm run build && lint-staged" } }, "lint-staged": { "*.{js,json,css,md}": [ "prettier --write", "git add" ] } }