updux/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

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": {
"@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": {
2019-11-05 01:34:14 +00:00
"build": "tsc && typedoc",
2019-10-22 14:45:45 +00:00
"test": "jest"
},
2019-11-06 00:46:16 +00:00
"version": "1.1.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",
2019-10-28 22:09:51 +00:00
"types": "./dist/index.d.ts"
2019-10-17 15:15:10 +00:00
}