pebblebed
Version:
Simplified interactions with Google Datastore for NodeJS
84 lines (83 loc) • 2.29 kB
JSON
{
"name": "pebblebed",
"version": "2.0.3",
"description": "Simplified interactions with Google Datastore for NodeJS",
"keywords": [
"cloud",
"datastore",
"entities",
"google",
"load",
"nodejs",
"query",
"save"
],
"type": "commonjs",
"homepage": "https://github.com/lostpebble/pebblebed#readme",
"bugs": {
"url": "https://github.com/lostpebble/pebblebed/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lostpebble/pebblebed.git"
},
"license": "Apache-2.0",
"author": "Paul Myburgh",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run build-es6",
"build-es2017": "rimraf ./dist-next tsc --p tsconfig.next.json",
"build-es6": "rimraf ./dist && tsc",
"cut-major-release": "npm version major && git push --follow-tags && npm publish",
"cut-minor-release": "npm version minor && git push --follow-tags && npm publish",
"cut-patch-release": "npm version patch && git push --follow-tags && npm publish",
"prepublish": "in-publish && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run watch-es6",
"watch-es2017": "tsc --p tsconfig.next.json --watch",
"watch-es6": "tsc --watch"
},
"jest": {
"bail": false,
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testEnvironment": "jsdom",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true
},
"dependencies": {
"dynamic-config-store": "^1.0.3",
"joi": "^17.4.2"
},
"devDependencies": {
"@types/ioredis": "^3.2.7",
"@types/lodash": "^4.14.106",
"@types/node": "^8.0.17",
"@google-cloud/datastore": "^6.5.0",
"concurrently": "^3.5.0",
"in-publish": "^2.0.0",
"ioredis": "^3.2.2",
"jest": "^23.6.0",
"lodash": "^4.17.5",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"typescript": "4.4.2"
},
"peerDependencies": {
"@google-cloud/datastore": "^6.5.0",
"ioredis": "^3.2.2"
},
"engines": {
"node": ">=6.5.0"
}
}