flesh out the package for publishing

This commit is contained in:
Yanick Champoux 2019-10-22 12:11:27 -04:00
parent 5c75b7ffdb
commit 3f6c31a998

View File

@ -1,22 +1,35 @@
{ {
"dependencies" : { "dependencies": {
"lodash" : "^4.17.15", "lodash": "^4.17.15",
"redux" : "^4.0.4" "redux": "^4.0.4"
}, },
"devDependencies" : { "devDependencies": {
"@babel/core" : "^7.6.4", "@babel/cli": "^7.6.4",
"@babel/preset-env" : "^7.6.3", "@babel/core": "^7.6.4",
"babel-jest" : "^24.9.0", "@babel/preset-env": "^7.6.3",
"jest" : "^24.9.0", "babel-jest": "^24.9.0",
"updeep" : "^1.2.0" "jest": "^24.9.0",
"updeep": "^1.2.0"
}, },
"license" : "MIT", "license": "MIT",
"main" : "dist/index.js", "main": "dist/index.js",
"name" : "updux", "name": "updux",
"scripts" : { "description": "Updeep-friendly Redux helper framework",
"build" : "tsc", "scripts": {
"build": "babel src --out-dir dist",
"test": "jest" "test": "jest"
}, },
"types" : "dist/index.d.ts", "version": "0.0.1",
"version" : "0.0.1" "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"
} }