UNPKG

quis

Version:

A simple DSL for data sorting and filtering

85 lines (83 loc) 2.38 kB
{ "name": "quis", "version": "1.3.6", "description": "A simple DSL for data sorting and filtering", "type": "module", "main": "build/quis.js", "module": "build/quis.esm.js", "browser": "build/quis.min.js", "types": "build/types/index.d.ts", "exports": { ".": { "types": "./build/types/index.d.ts", "import": "./build/quis.esm.js", "require": "./build/quis.js", "browser": "./build/quis.min.js", "default": "./build/quis.js" }, "./types": { "types": "./build/types/types-only.d.ts" }, "./package.json": "./package.json" }, "files": [ "build", "src", "test", "scripts", "docs" ], "keywords": [ "DSL", "data", "sorting", "filtering" ], "repository": { "type": "git", "url": "git+https://github.com/videlais/quis" }, "scripts": { "test": "jest --coverage", "test:node": "jest --testMatch='**/test/node/**/*.test.{js,ts}'", "test:web": "jest --testMatch='**/test/web/**/*.test.{js,ts}' --testEnvironment=jsdom", "test:all": "npm test", "build:types": "tsc --emitDeclarationOnly", "build:webpack": "webpack --mode=production", "build": "npm run build:types && npm run build:webpack", "build:dev": "webpack --mode=development", "clean": "rimraf build/quis.js build/quis.min.js build/types", "lint": "eslint ./src ./test --fix", "lint:check": "eslint ./src ./test", "typecheck": "tsc --noEmit", "docs:update": "cp build/quis.min.js docs/", "all": "npm run clean && npm run lint && npm run typecheck && npm run build && npm test" }, "author": "Dan Cox", "license": "MIT", "dependencies": {}, "devDependencies": { "@babel/core": "^7.28.5", "@babel/preset-env": "^7.28.5", "@babel/preset-typescript": "^7.28.5", "@eslint/js": "^9.39.0", "@types/jest": "^30.0.0", "@types/node": "^24.9.2", "babel-jest": "^30.2.0", "babel-loader": "^10.0.0", "css-loader": "^7.1.2", "eslint": "^9.39.0", "eslint-plugin-jest": "^29.0.1", "globals": "^16.4.0", "html-webpack-plugin": "^5.6.4", "jest": "^30.2.0", "jest-environment-jsdom": "^30.2.0", "rimraf": "^6.1.0", "ts-jest": "^29.4.5", "ts-loader": "^9.5.4", "typescript": "^5.9.3", "typescript-eslint": "^8.46.2", "webpack": "^5.102.1", "webpack-cli": "^6.0.1" } }