s3-query-json
Version:
Query (ND)JSON files on S3
74 lines (73 loc) • 1.55 kB
JSON
{
"name": "s3-query-json",
"version": "2.0.0",
"description": "Query (ND)JSON files on S3",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint -p . --format stylish",
"format": "prettier --write \"source/**/*.ts\" \"test/**/*.ts\" \"lib/**/*.js\"",
"build": "npm run clean && tsc -p tsconfig.json",
"test": "npm run format && npm run lint && nyc ava",
"clean": "del-cli lib",
"prepare": "npm run test && npm run build",
"deploy": "npm run prepare && npx np"
},
"keywords": [
"S3",
"JSON",
"NDJSON",
"SQL"
],
"engines": {
"node": ">=8"
},
"files": [
"lib"
],
"author": {
"name": "Simon Jang",
"email": "simon.jang.contact@gmail.com",
"url": "github.com/SimonJang"
},
"repository": "SimonJang/s3-query-json",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/node": "^10.17.9",
"@types/sinon": "^5.0.7",
"ava": "^2.4.0",
"aws-sdk": "^2.590.0",
"del-cli": "^3.0.0",
"nyc": "^14.1.1",
"ow": "^0.17.0",
"prettier": "^1.19.1",
"sinon": "^6.3.5",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-xo": "^0.9.0",
"typescript": "^3.7.3",
"xo": "^0.25.3"
},
"peerDependencies": {
"aws-sdk": "^2.330.0"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"ava": {
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/query.ts"
]
}
}