Files
directus/packages/sdk/package.json
renovate[bot] a1eae036e9 Update jest monorepo to v27.2.0 (#7989)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-09-13 11:37:17 -04:00

71 lines
1.7 KiB
JSON

{
"name": "@directus/sdk",
"version": "9.0.0-rc.92",
"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": {
"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": "20.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "13.0.4",
"@types/jest": "27.0.1",
"argon2": "0.28.2",
"dotenv": "10.0.0",
"jest": "27.2.0",
"jest-environment-jsdom": "27.2.0",
"nock": "13.1.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"rollup": "2.56.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.5",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd"
}