mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
f282e381a1
* chore(deps): update all non-major dependencies * Fix lint Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
71 lines
2.1 KiB
JSON
71 lines
2.1 KiB
JSON
{
|
|
"name": "react-base16-styling",
|
|
"version": "0.9.1",
|
|
"description": "React styling with base16 color scheme support",
|
|
"keywords": [
|
|
"react",
|
|
"theme",
|
|
"base16",
|
|
"styling"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-base16-styling",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
|
|
"build:cjs": "babel src --extensions \".ts\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.17.9",
|
|
"@types/base16": "^1.0.2",
|
|
"@types/lodash": "^4.14.182",
|
|
"base16": "^1.0.0",
|
|
"color": "^4.2.3",
|
|
"csstype": "^3.0.11",
|
|
"lodash.curry": "^4.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.10",
|
|
"@babel/core": "^7.17.10",
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@babel/plugin-transform-runtime": "^7.17.10",
|
|
"@babel/preset-env": "^7.17.10",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@types/color": "^3.0.3",
|
|
"@types/jest": "^27.5.0",
|
|
"@types/lodash.curry": "^4.1.7",
|
|
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
"@typescript-eslint/parser": "^5.22.0",
|
|
"eslint": "^8.14.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^26.1.5",
|
|
"jest": "^27.5.1",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.4",
|
|
"typescript": "~4.5.5"
|
|
}
|
|
}
|