-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Force micromatch recent resolution This is a transitive dependency by way of Jest. Forcing the newer version, our tests all still run and pass, so it works. See micromatch/micromatch#264 for discussion about how the CVE is bogus and has wasted thousands of hours of time. * browserslist update
- Loading branch information
Showing
2 changed files
with
86 additions
and
690 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,63 @@ | ||
{ | ||
"name": "@ironcorelabs/ironnode", | ||
"version": "1.0.0", | ||
"description": "IronCore Labs SDK for NodeJS Applications", | ||
"homepage": "https://docs.ironcorelabs.com", | ||
"main": "index.js", | ||
"repository": "[email protected]:IronCoreLabs/ironnode.git", | ||
"author": "IronCore Labs", | ||
"license": "AGPL-3.0-only", | ||
"types": "ironnode.d.ts", | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"os": [ | ||
"darwin", | ||
"linux", | ||
"win32" | ||
], | ||
"cpu": [ | ||
"x64", | ||
"arm64" | ||
], | ||
"scripts": { | ||
"start": "_ICL_API_DOMAIN_REPLACEMENT_=http://localhost:9090 ts-node -- ./integration/index.ts", | ||
"build": "./build.js", | ||
"test": "yarn run lint && yarn run unit", | ||
"unit": "jest --coverage", | ||
"lint": "tslint -p \"tsconfig.json\" -e \"**/tests/**\" \"src/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@ironcorelabs/recrypt-node-binding": "^0.10.0", | ||
"futurejs": "2.1.1", | ||
"node-fetch": "^2.6.7" | ||
}, | ||
"devDependencies": { | ||
"@types/inquirer": "^7.3.0", | ||
"@types/jest": "^26.0.7", | ||
"@types/jsonwebtoken": "^8.5.0", | ||
"@types/node": "^12.12.52", | ||
"@types/node-fetch": "^2.5.7", | ||
"inquirer": "^7.3.3", | ||
"jest": "^26.1.0", | ||
"jest-extended": "^0.11.5", | ||
"jsonwebtoken": "^9.0.0", | ||
"shelljs": "^0.8.4", | ||
"ts-jest": "^26.1.3", | ||
"ts-node": "^8.10.2", | ||
"tslint": "^6.1.2", | ||
"typescript": "^3.9.7", | ||
"typestrict": "^1.0.2" | ||
}, | ||
"prettier": { | ||
"printWidth": 160, | ||
"tabWidth": 4, | ||
"trailingComma": "es5", | ||
"bracketSpacing": false, | ||
"jsxBracketSameLine": true, | ||
"arrowParens": "always" | ||
} | ||
"name": "@ironcorelabs/ironnode", | ||
"version": "1.0.0", | ||
"description": "IronCore Labs SDK for NodeJS Applications", | ||
"homepage": "https://docs.ironcorelabs.com", | ||
"main": "index.js", | ||
"repository": "[email protected]:IronCoreLabs/ironnode.git", | ||
"author": "IronCore Labs", | ||
"license": "AGPL-3.0-only", | ||
"types": "ironnode.d.ts", | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"os": [ | ||
"darwin", | ||
"linux", | ||
"win32" | ||
], | ||
"cpu": [ | ||
"x64", | ||
"arm64" | ||
], | ||
"scripts": { | ||
"start": "_ICL_API_DOMAIN_REPLACEMENT_=http://localhost:9090 ts-node -- ./integration/index.ts", | ||
"build": "./build.js", | ||
"test": "yarn run lint && yarn run unit", | ||
"unit": "jest --coverage", | ||
"lint": "tslint -p \"tsconfig.json\" -e \"**/tests/**\" \"src/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@ironcorelabs/recrypt-node-binding": "^0.10.0", | ||
"futurejs": "2.1.1", | ||
"node-fetch": "^2.6.7" | ||
}, | ||
"devDependencies": { | ||
"@types/inquirer": "^7.3.0", | ||
"@types/jest": "^26.0.7", | ||
"@types/jsonwebtoken": "^8.5.0", | ||
"@types/node": "^12.12.52", | ||
"@types/node-fetch": "^2.5.7", | ||
"inquirer": "^7.3.3", | ||
"jest": "^26.1.0", | ||
"jest-extended": "^0.11.5", | ||
"jsonwebtoken": "^9.0.0", | ||
"shelljs": "^0.8.4", | ||
"ts-jest": "^26.1.3", | ||
"ts-node": "^8.10.2", | ||
"tslint": "^6.1.2", | ||
"typescript": "^3.9.7", | ||
"typestrict": "^1.0.2" | ||
}, | ||
"resolutions": { | ||
"micromatch": "^4.0.8" | ||
}, | ||
"prettier": { | ||
"printWidth": 160, | ||
"tabWidth": 4, | ||
"trailingComma": "es5", | ||
"bracketSpacing": false, | ||
"jsxBracketSameLine": true, | ||
"arrowParens": "always" | ||
} | ||
} |
Oops, something went wrong.