updux/package.json

77 lines
2.2 KiB
JSON
Raw Normal View History

2019-10-17 15:15:10 +00:00
{
2022-08-25 01:19:27 +00:00
"type": "module",
"types": "./dist",
2020-06-02 20:00:48 +00:00
"dependencies": {
2021-10-07 16:04:15 +00:00
"@yanick/updeep": "link:../updeep",
2022-08-25 01:19:27 +00:00
"lodash": "^4.17.21",
2021-09-28 03:11:13 +00:00
"lodash-es": "^4.17.21",
2021-09-28 22:13:22 +00:00
"moize": "^6.1.0",
2020-06-02 20:00:48 +00:00
"redux": "^4.0.5",
"ts-action": "^11.0.0",
2021-09-28 03:11:13 +00:00
"updeep": "^1.2.1"
2020-06-02 20:00:48 +00:00
},
"devDependencies": {
"@babel/cli": "^7.8.4",
2021-10-07 16:04:15 +00:00
"@babel/core": "^7.15.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
2020-06-02 20:00:48 +00:00
"@babel/preset-env": "^7.8.7",
2021-10-15 16:41:58 +00:00
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
2020-06-02 20:00:48 +00:00
"@types/lodash": "^4.14.149",
2020-06-13 17:35:59 +00:00
"@types/sinon": "^7.5.2",
2020-06-02 20:00:48 +00:00
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
2021-10-12 17:11:32 +00:00
"better-docs": "^2.3.2",
2020-06-02 20:00:48 +00:00
"docsify": "^4.11.2",
"docsify-cli": "^4.4.0",
2020-06-13 17:35:59 +00:00
"docsify-tools": "^1.0.20",
"dtslint": "^3.3.0",
2020-06-02 20:00:48 +00:00
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
2020-06-13 17:35:59 +00:00
"glob": "^7.1.6",
2021-10-15 16:41:58 +00:00
"jest": "^27.2.5",
2021-10-12 17:11:32 +00:00
"jsdoc": "^3.6.7",
2021-10-07 16:04:15 +00:00
"prettier": "^2.4.1",
2020-06-13 17:35:59 +00:00
"promake": "^3.1.3",
"sinon": "^9.0.1",
"standard-version": "^8.0.0",
2021-09-28 03:11:13 +00:00
"tap": "15",
2021-10-15 16:41:58 +00:00
"ts-node": "^8.10.2",
2021-10-12 17:11:32 +00:00
"tsd": "^0.17.0",
"typedoc": "0.22.5",
2022-08-25 01:19:27 +00:00
"typescript": "^4.4.4"
2020-06-02 20:00:48 +00:00
},
"license": "MIT",
2022-08-25 01:19:27 +00:00
"main": "dist/index.js",
2020-06-02 20:00:48 +00:00
"name": "updux",
"description": "Updeep-friendly Redux helper framework",
"scripts": {
"docsify:serve": "docsify serve docs",
"build": "tsc",
2020-06-19 23:29:12 +00:00
"test": "tap src/**test.ts",
"lint": "prettier -c --",
"lint:fix": "prettier --write --"
2020-06-02 20:00:48 +00:00
},
2021-05-02 20:19:48 +00:00
"version": "3.0.0",
2020-06-02 20:00:48 +00:00
"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",
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5"
}
2019-10-17 15:15:10 +00:00
}