-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from JupiterOne/63-npm-package-error
Issue #63 - Fixing npm package error
- Loading branch information
Showing
4 changed files
with
16 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
{ | ||
"name": "@jupiterone/starbase", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Orchestrator project for JupiterOne open source ingestion projects.", | ||
"repository": "https://github.com/JupiterOne/starbase.git", | ||
"author": "[email protected]", | ||
"license": "MPL-2.0", | ||
"files": [ | ||
"LICENSE", | ||
"README.md", | ||
"dist", | ||
"bin" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
|
@@ -26,7 +32,7 @@ | |
"type-check": "tsc", | ||
"test": "jest && yarn format:check", | ||
"test:ci": "yarn lint && yarn type-check && yarn test", | ||
"build": "tsc -p tsconfig.dist.json --declaration && cp README.md dist/README.md && cp LICENSE dist/LICENSE && cp -r bin dist" | ||
"build": "tsc -p tsconfig.dist.json --declaration" | ||
}, | ||
"dependencies": { | ||
"@jupiterone/integration-sdk-cli": "^8.6.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"include": ["src", "package.json"], | ||
"exclude": [ | ||
"dist", | ||
"**/*.test.ts", | ||
"**/*.test.js", | ||
"**/*/__tests__/**/*.ts", | ||
"**/*/__tests__/**/*.js", | ||
"**/*/__mocks__/**/*.ts", | ||
"**/*/__mocks__/**/*.js" | ||
] | ||
"exclude": ["dist", "examples", "**/*.test.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters