updux/package.json

52 lines
1.3 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",
"redux": "^4.0.4",
"ts-action": "^11.0.0",
"updeep": "^1.2.0"
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",
"docsify": "^4.10.2",
"docsify-cli": "^4.4.0",
2019-10-22 16:11:27 +00:00
"jest": "^24.9.0",
2019-10-23 16:56:12 +00:00
"ts-jest": "^24.1.0",
"tsd": "^0.10.0",
"typescript": "^3.6.4"
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",
2020-02-03 16:05:42 +00:00
"build": "tsc",
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
}