76 lines
2.2 KiB
JSON
76 lines
2.2 KiB
JSON
{
|
|
"dependencies": {
|
|
"@yanick/updeep": "link:../updeep",
|
|
"lodash": "^4.17.15",
|
|
"lodash-es": "^4.17.21",
|
|
"moize": "^6.1.0",
|
|
"redux": "^4.0.5",
|
|
"ts-action": "^11.0.0",
|
|
"updeep": "^1.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.15.5",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
|
|
"@babel/preset-env": "^7.8.7",
|
|
"@babel/preset-typescript": "^7.15.0",
|
|
"@types/jest": "^27.0.2",
|
|
"@types/lodash": "^4.14.149",
|
|
"@types/sinon": "^7.5.2",
|
|
"@typescript-eslint/eslint-plugin": "^2.23.0",
|
|
"@typescript-eslint/parser": "^2.23.0",
|
|
"better-docs": "^2.3.2",
|
|
"docsify": "^4.11.2",
|
|
"docsify-cli": "^4.4.0",
|
|
"docsify-tools": "^1.0.20",
|
|
"dtslint": "^3.3.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.10.0",
|
|
"eslint-plugin-import": "^2.20.1",
|
|
"eslint-plugin-prettier": "^3.1.2",
|
|
"glob": "^7.1.6",
|
|
"jest": "^27.2.5",
|
|
"jsdoc": "^3.6.7",
|
|
"prettier": "^2.4.1",
|
|
"promake": "^3.1.3",
|
|
"sinon": "^9.0.1",
|
|
"standard-version": "^8.0.0",
|
|
"tap": "15",
|
|
"ts-node": "^8.10.2",
|
|
"tsd": "^0.17.0",
|
|
"typedoc": "0.22.5",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"license": "MIT",
|
|
"main": "src/index.js",
|
|
"name": "updux",
|
|
"description": "Updeep-friendly Redux helper framework",
|
|
"scripts": {
|
|
"docsify:serve": "docsify serve docs",
|
|
"build": "tsc",
|
|
"test": "tap src/**test.ts",
|
|
"lint": "prettier -c --",
|
|
"lint:fix": "prettier --write --"
|
|
},
|
|
"version": "3.0.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yanick/updux.git"
|
|
},
|
|
"keywords": [
|
|
"redux",
|
|
"updeep"
|
|
],
|
|
"author": "Yanick Champoux <yanick@babyl.ca> (http://techblog.babyl.ca)",
|
|
"bugs": {
|
|
"url": "https://github.com/yanick/updux/issues"
|
|
},
|
|
"homepage": "https://github.com/yanick/updux#readme",
|
|
"types": "./dist/index.d.ts",
|
|
"prettier": {
|
|
"tabWidth": 4,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
}
|
|
}
|