UNPKG

jparticles

Version:

A lightweight, efficient and easy-to-use Canvas library for building some cool particle effects.

97 lines 2.77 kB
{ "name": "jparticles", "description": "A lightweight, efficient and easy-to-use Canvas library for building some cool particle effects.", "version": "3.5.0", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib", "browser" ], "scripts": { "node:exp": "node --experimental-top-level-await --es-module-specifier-resolution=node", "dev": "webpack-dev-server --config scripts/webpack.config.js --color", "build": "yarn node:exp scripts/build", "release": "yarn node:exp scripts/release", "lint": "eslint . --ext .js,.ts", "lint:fix": "eslint . --ext .js,.ts --fix", "test": "yarn test:unit && yarn test:e2e", "test:unit": "jest", "test:unit-watch": "yarn test:unit --watch", "test:e2e": "cypress run", "coverage": "yarn test:unit --coverage", "coverage:report": "yarn coverage && codecov" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "*.{ts,js}": [ "eslint --fix" ] }, "devEngines": { "node": ">=14.3.0" }, "resolutions": { "tslib": "^2.1.0" }, "devDependencies": { "@commitlint/cli": "^9.1.2", "@commitlint/config-conventional": "^9.1.2", "@rollup/plugin-node-resolve": "^11.1.0", "@types/jest": "^26.0.23", "@typescript-eslint/eslint-plugin": "^4.28.2", "@typescript-eslint/parser": "^4.28.2", "chalk": "^4.1.0", "chokidar": "^3.4.2", "codecov": "^3.8.3", "copy-webpack-plugin": "^6.0.3", "eslint": "^7.30.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.23.4", "eslint-plugin-prettier": "^3.4.0", "eslint-plugin-simple-import-sort": "^7.0.0", "eslint-plugin-unused-imports": "^1.1.2", "execa": "^5.0.0", "html-webpack-plugin": "^4.3.0", "husky": "^4.2.5", "inquirer": "^8.1.1", "jest": "^27.0.5", "lint-staged": "^10.2.11", "lodash": "^4.17.21", "ora": "^5.4.0", "prettier": "^2.3.2", "rollup": "^2.38.0", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.29.0", "ts-jest": "^27.0.3", "ts-loader": "^8.0.1", "ts-node": "^10.0.0", "tslib": "^2.1.0", "ttypescript": "^1.5.12", "typescript": "^4.2.3", "typescript-transform-paths": "^2.2.2", "webpack": "^4.44.0", "webpack-cli": "^3.3.12", "webpack-dev-server": "^3.11.0" }, "author": "Barrior", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/Barrior/JParticles.git" }, "bugs": { "url": "https://github.com/Barrior/JParticles/issues" }, "homepage": "jparticles.js.org", "keywords": [ "JParticles", "Particles", "Particle effects" ] }