RumyantsevMichael/yart

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "yart",
  "version": "0.1.0",
  "description": "Yet another react table",
  "author": "Michael Rumyantsev <Rumyantsev.Michae@gmail.com>",
  "contributors": [
    {
      "name": "Michael Rumyantsev",
      "email": "Rumyantsev.Michae@gmail.com"
    },
    {
      "name": "Sergei Vnukov",
      "email": "f.monk@yandex.ru"
    }
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git@github.com:RumyantsevMichael/yart.git"
  },
  "main": "lib/index.js",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "directories": {
    "example": "dist",
    "lib": "lib",
    "src": "src"
  },
  "scripts": {
    "prepare": "npm run build:vendor:prod",
    "prepublishOnly": "npm run build",
    "start": "npm run build:vendor:dev && webpack-serve --config webpack.example.config.js",
    "test": "jest --passWithNoTests",
    "build": "rollup -c && npm run build:declaration",
    "preversion": "npm run test && npm run build",
    "postversion": "git push --follow-tags",
    "build:declaration": "tsc --project tsconfig.build.json --emitDeclarationOnly",
    "build:example": "webpack --config webpack.example.config.js",
    "build:vendor:dev": "webpack --config webpack.dll.config.js --mode development",
    "build:vendor:prod": "webpack --config webpack.dll.config.js --mode production",
    "major": "npm version major -m \"Release %s\"",
    "minor": "npm version minor -m \"Release %s\"",
    "patch": "npm version patch -m \"Release %s\""
  },
  "dependencies": {},
  "devDependencies": {
    "@types/clean-webpack-plugin": "^0.1.2",
    "@types/react": "^16.4.13",
    "@types/react-dom": "^16.0.7",
    "@types/uglifyjs-webpack-plugin": "^1.1.0",
    "@types/webpack": "^4.4.11",
    "add-asset-html-webpack-plugin": "^3.1.2",
    "autobind-decorator": "^2.1.0",
    "clean-webpack-plugin": "^0.1.19",
    "css-loader": "^0.28.11",
    "html-webpack-plugin": "^3.2.0",
    "jest": "^23.5.0",
    "postcss-loader": "^2.1.5",
    "postcss-units": "^1.2.1",
    "react": "^16.4.2",
    "react-dom": "^16.4.2",
    "rollup": "^0.67.1",
    "rollup-plugin-babel-minify": "^5.0.0",
    "rollup-plugin-commonjs": "^9.1.6",
    "rollup-plugin-node-resolve": "^3.3.0",
    "rollup-plugin-postcss": "^1.6.2",
    "rollup-plugin-typescript2": "^0.18.0",
    "style-loader": "^0.23.0",
    "ts-jest": "^22.4.6",
    "ts-loader": "^4.5.0",
    "typescript": "^3.1.6",
    "uglifyjs-webpack-plugin": "^1.3.0",
    "webpack": "^4.17.1",
    "webpack-cli": "^3.1.2",
    "webpack-serve": "^1.0.4",
    "webpack-serve-waitpage": "^1.0.2"
  },
  "peerDependencies": {
    "react": "16.x",
    "react-dom": "16.x"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}