UNPKG

react-uki

Version:
133 lines (132 loc) 3.58 kB
{ "name": "react-uki", "version": "1.2.4", "description": "React UI styled components", "main": "lib/index", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "scripts": { "build:cleanup": "rimraf lib", "build": "yarn build:cleanup && tsc", "tslint": "tslint --project tslint.json 'src/**/*.ts?(x)'", "tslint:fix": "tslint --fix --project tslint.json 'src/**/*.ts?(x)'", "stylelint": "stylelint '**/*.ts?(x)'", "stylelint:fix": "stylelint '**/*.ts?(x)' --fix", "linting": "yarn tslint && yarn stylelint", "test": "jest", "test:dev": "jest --watch --coverage", "test:coverage": "jest --coverage", "prepare": "yarn build", "preversion": "yarn linting", "prepublishOnly": "yarn test && yarn linting" }, "husky": { "hooks": { "pre-commit": "yarn linting" } }, "repository": { "type": "git", "url": "git://github.com/kidjp85/react-uki.git" }, "bugs": { "url": "https://github.com/kidjp85/react-uki/issues" }, "keywords": [ "React", "UI components", "Styled-components", "Styled-system" ], "engines": { "node": ">= 6.11.0" }, "dependencies": { "styled-system": "^5.0.6" }, "peerDependencies": { "styled-components": ">=4.0.0" }, "devDependencies": { "@babel/core": "^7.3.4", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.3.4", "@babel/preset-react": "^7.0.0", "@types/jest": "^24.0.11", "@types/react": "^16.8.7", "@types/react-dom": "^16.8.2", "@types/react-test-renderer": "^16.8.1", "@types/styled-components": "^4.1.14", "@types/styled-system": "^4.2.1", "babel-jest": "^24.4.0", "babel-loader": "^8.0.5", "babel-plugin-dynamic-import-node": "^2.2.0", "cross-env": "^5.2.0", "enzyme": "^3.9.0", "enzyme-adapter-react-16": "^1.10.0", "enzyme-to-json": "^3.3.5", "husky": "^2.3.0", "jest": "^24.4.0", "jest-styled-components": "^6.3.1", "prettier": "^1.16.4", "react": "^16.8.4", "react-dom": "^16.8.4", "react-test-renderer": "^16.8.6", "rimraf": "^2.6.3", "styled-components": "^4.2.0", "stylelint": "^10.0.1", "stylelint-config-idiomatic-order": "^7.0.0", "stylelint-config-rational-order": "^0.1.2", "stylelint-config-recommended": "^2.2.0", "stylelint-config-styled-components": "^0.1.1", "stylelint-order": "^3.0.0", "stylelint-processor-styled-components": "^1.7.0", "ts-jest": "^24.0.0", "ts-loader": "^5.3.3", "tslint": "^5.13.1", "tslint-config-airbnb": "^5.11.1", "tslint-config-prettier": "^1.18.0", "tslint-loader": "^3.5.4", "tslint-plugin-prettier": "^2.0.1", "tslint-react": "^3.6.0", "tslint-react-hooks": "^2.0.0-alpha.2", "typescript": "^3.3.3333" }, "jest": { "resetMocks": true, "resetModules": true, "verbose": true, "browser": true, "collectCoverage": true, "transform": { "^.+\\.(js|jsx)$": "babel-jest", "^.+\\.(ts|tsx)$": "ts-jest" }, "setupFilesAfterEnv": [ "jest-styled-components" ], "coverageReporters": [ "html", "lcov" ], "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } }, "coveragePathIgnorePatterns": [ "/node_modules/", "/lib/" ], "testMatch": [ "<rootDir>/tests/**/*.test.(ts|tsx|js)" ] }, "author": "Asher Nguyen<phucnguyenhoang1985@gmail.com>", "license": "MIT" }