UNPKG

@tricoteuses/senat

Version:

Handle French Sénat's open data

92 lines (91 loc) 2.69 kB
{ "name": "@tricoteuses/senat", "version": "1.1.2", "description": "Handle French Sénat's open data", "keywords": [ "France", "open data", "Parliament", "Sénat" ], "author": "Emmanuel Raviart <emmanuel@raviart.com>", "bugs": { "url": "https://git.en-root.org/tricoteuses/tricoteuses-senat/issues" }, "homepage": "https://tricoteuses.fr/", "license": "AGPL-3.0-or-later", "repository": { "type": "git", "url": "https://git.en-root.org/tricoteuses/tricoteuses-senat.git" }, "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib" ], "exports": { ".": { "import": "./lib/index.mjs", "require": "./lib/index.js", "types": "./lib/index.d.ts" }, "./package.json": "./package.json" }, "typesVersions": { "*": { ".": [ "./lib/index.d.ts" ] } }, "publishConfig": { "access": "public" }, "scripts": { "build": "npm run build:types && npm run build:js && npm run build:mjs && npm run build:cjs && npm run build:static", "build:js": "npx babel src --out-dir lib --extensions \".ts\" --source-maps inline", "build:cjs": "babel src --out-dir lib --extensions \".ts\" --source-maps inline", "build:mjs": "tsc && for file in lib/*.js lib/**/*.js; do new_file=`echo $file | sed 's/.js/.mjs/'`; mv $file $new_file; done", "build:types": "tsc --emitDeclarationOnly", "build:static": "npx babel src --out-dir lib --copy-files", "prepublishOnly": "npm run build", "prettier": "prettier --write 'src/**/*.ts' 'tests/**/*.test.ts'", "type-check": "tsc --noEmit", "type-check:watch": "npm run type-check -- --watch" }, "dependencies": { "@biryani/core": "^0.2.1", "command-line-args": "^5.1.1", "cross-fetch": "^3.0.4", "dotenv": "^8.2.0", "fs-extra": "^9.1.0", "node-stream-zip": "^1.8.2", "pg-promise": "^10.9.2", "slug": "^4.0.2", "windows-1252": "^1.0.0" }, "devDependencies": { "@babel/cli": "^7.11.6", "@babel/core": "^7.11.6", "@babel/node": "^7.10.5", "@babel/plugin-proposal-class-properties": "^7.10.4", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/preset-env": "^7.11.5", "@babel/preset-typescript": "^7.10.4", "@typed-code/schemats": "^5.0.1", "@types/command-line-args": "^5.0.0", "@types/fs-extra": "^9.0.7", "@types/node": "^14.14.28", "@types/slug": "^0.9.1", "babel-eslint": "^10.1.0", "core-js": "^3.3.2", "eslint": "^8.22.0", "prettier": "^2.2.1", "regenerator-runtime": "^0.13.3", "tslib": "^2.1.0", "typescript": "^4.1.5" }, "engines": { "node": ">=16" } }