UNPKG

playable.js

Version:

A lightweight HTML5 game engine.

65 lines (64 loc) 1.93 kB
{ "name": "playable.js", "version": "3.7.0", "author": "Jealous", "description": "A lightweight HTML5 game engine.", "main": "dist/playable.cjs", "module": "dist/playable.mjs", "browser": "dist/playable.js", "types": "types/index.d.ts", "files": [ "src", "dist", "types/**/*.d.ts" ], "scripts": { "test": "karma start --single-run", "coverage": "npm run test && cat coverage/**/lcov.info | coveralls", "docs": "npm run docs:md && vuepress build", "docs:md": "typedoc --theme markdown --readme none --name 'API Reference' --out docs src/index.ts", "docs:dev": "vuepress dev", "docs:build": "vuepress build", "clean": "rimraf dist types/*/ types/index.d.ts", "build": "npm run clean && rollup -c && npm run uglify && tsc -b types/tsconfig.json", "watch": "npm run clean && rollup -c -w", "uglify": "uglifyjs dist/playable.js -o dist/playable.min.js -c --source-map" }, "repository": { "type": "git", "url": "git+https://github.com/Lanfei/playable.js.git" }, "keywords": [ "html5", "playable", "game-engine", "canvas" ], "license": "MIT", "bugs": { "url": "https://github.com/Lanfei/playable.js/issues" }, "homepage": "https://github.com/Lanfei/playable.js#readme", "devDependencies": { "@rollup/plugin-commonjs": "^24.0.0", "@rollup/plugin-typescript": "^10.0.1", "@types/mocha": "^10.0.1", "chai": "^4.3.7", "coveralls": "^3.1.1", "karma": "^6.4.1", "karma-chrome-launcher": "^3.1.1", "karma-firefox-launcher": "^2.1.2", "karma-mocha": "^2.0.1", "karma-mocha-reporter": "^2.2.5", "karma-typescript": "^5.5.3", "mocha": "^10.2.0", "rimraf": "^3.0.2", "rollup": "^3.7.5", "tslib": "^2.4.1", "typedoc": "^0.23.23", "typedoc-plugin-markdown": "^3.14.0", "typescript": "^4.9.4", "uglify-js": "^3.17.4", "vuepress": "^1.9.7" } }