Files
directus/packages/sdk/package.json
dependabot[bot] 792281ceb6 Bump dotenv from 9.0.2 to 10.0.0 (#6147)
Bumps [dotenv](https://github.com/motdotla/dotenv) from 9.0.2 to 10.0.0.
- [Release notes](https://github.com/motdotla/dotenv/releases)
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](https://github.com/motdotla/dotenv/compare/v9.0.2...v10.0.0)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-09 11:20:21 -04:00

74 lines
1.8 KiB
JSON

{
"name": "@directus/sdk",
"version": "9.0.0-rc.74",
"description": "The official Directus SDK for use in JavaScript!",
"repository": {
"type": "git",
"url": "https://github.com/directus/directus.git"
},
"main": "./dist/index.js",
"module": "./dist/sdk.esm.js",
"unpkg": "./dist/sdk.esm.min.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "npm run cleanup",
"build": "run-p build:*",
"build:targets": "rollup -c",
"build:node": "tsc --project ./tsconfig.json",
"cleanup": "run-p cleanup:*",
"cleanup:dist": "rimraf ./dist",
"cleanup:types": "rimraf ./types",
"cleanup:node": "rimraf ./node",
"cleanup:browser": "rimraf ./browser",
"cleanup:coverage": "rimraf ./coverage",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll"
},
"keywords": [
"api",
"client",
"cms",
"directus",
"headless",
"javascript",
"node",
"sdk"
],
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.22",
"argon2": "^0.28.1",
"dotenv": "^10.0.0",
"jest": "^27.0.3",
"jest-environment-jsdom": "^27.0.3",
"jest-environment-jsdom-global": "^2.0.4",
"mockdate": "^3.0.5",
"nock": "^13.0.10",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.50.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd"
}