Skip to content

Commit

Permalink
Fix package configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
thejohnfreeman committed Feb 3, 2019
1 parent aa6069c commit 3dff968
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions package.json
@@ -1,5 +1,5 @@
{
"name": "callable-object",
"name": "@thejohnfreeman/callable-object",
"version": "1.0.0",
"description": "Trying to add function call operators to JavaScript objects.",
"main": "src/javascript.js",
Expand All @@ -8,7 +8,21 @@
"lint": "tsc --noEmit && tslint --project tsconfig.json 'src/**/*.{ts,tsx}'",
"test": "jest"
},
"repository": "https://github.com/thejohnfreeman/callable-object.git",
"jest": {
"preset": "ts-jest"
},
"keywords": [
"callable",
"object"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thejohnfreeman/callable-object.git"
},
"bugs": {
"url": "https://github.com/thejohnfreeman/callable-object/issues"
},
"homepage": "https://github.com/thejohnfreeman/callable-object#readme",
"author": "John Freeman <jfreeman08@gmail.com>",
"license": "MIT",
"devDependencies": {
Expand All @@ -20,7 +34,7 @@
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.3.1"
},
"jest": {
"preset": "ts-jest"
"publishConfig": {
"access": "public"
}
}

0 comments on commit 3dff968

Please sign in to comment.