2019-10-17 15:15:10 +00:00
|
|
|
{
|
2019-10-22 16:11:27 +00:00
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.17.15",
|
2019-11-05 01:34:14 +00:00
|
|
|
"mobx": "^5.14.2",
|
2019-10-22 16:11:27 +00:00
|
|
|
"redux": "^4.0.4"
|
2019-10-22 14:45:45 +00:00
|
|
|
},
|
2019-10-22 16:11:27 +00:00
|
|
|
"devDependencies": {
|
2020-01-28 15:51:20 +00:00
|
|
|
"docsify": "^4.10.2",
|
|
|
|
"docsify-cli": "^4.4.0",
|
2019-10-22 16:11:27 +00:00
|
|
|
"@babel/cli": "^7.6.4",
|
|
|
|
"@babel/core": "^7.6.4",
|
|
|
|
"@babel/preset-env": "^7.6.3",
|
2019-10-23 21:51:47 +00:00
|
|
|
"@types/jest": "^24.0.19",
|
2019-10-23 16:56:12 +00:00
|
|
|
"@types/lodash": "^4.14.144",
|
2019-10-22 16:11:27 +00:00
|
|
|
"babel-jest": "^24.9.0",
|
|
|
|
"jest": "^24.9.0",
|
2019-10-23 16:56:12 +00:00
|
|
|
"ts-jest": "^24.1.0",
|
|
|
|
"tsd": "^0.10.0",
|
2019-11-05 01:34:14 +00:00
|
|
|
"typedoc": "^0.15.0",
|
2019-10-23 16:56:12 +00:00
|
|
|
"typescript": "^3.6.4",
|
2019-10-22 16:11:27 +00:00
|
|
|
"updeep": "^1.2.0"
|
2019-10-22 14:45:45 +00:00
|
|
|
},
|
2019-10-22 16:11:27 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"name": "updux",
|
|
|
|
"description": "Updeep-friendly Redux helper framework",
|
|
|
|
"scripts": {
|
2020-01-28 15:51:20 +00:00
|
|
|
"docsify:serve": "docsify serve docs",
|
2019-11-05 01:34:14 +00:00
|
|
|
"build": "tsc && typedoc",
|
2019-10-22 14:45:45 +00:00
|
|
|
"test": "jest"
|
|
|
|
},
|
2019-11-07 00:01:31 +00:00
|
|
|
"version": "1.2.0",
|
2019-10-23 16:56:12 +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",
|
2020-01-28 15:51:20 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"prettier": {
|
|
|
|
"tabWidth": 4,
|
|
|
|
"singleQuote": true,
|
|
|
|
"trailingComma": "es5"
|
|
|
|
}
|
2019-10-17 15:15:10 +00:00
|
|
|
}
|