UNPKG

@daign/2d-pipeline

Version:
63 lines (62 loc) 1.58 kB
{ "name": "@daign/2d-pipeline", "version": "1.1.3", "description": "Two dimensional graphics pipeline.", "keywords": [ "graphics", "pipeline", "typescript" ], "main": "dist/lib/index.js", "types": "dist/lib/index.d.ts", "files": [ "dist/lib/**/*" ], "scripts": { "build": "rm -rf dist && mkdir dist && tsc", "lint": "tslint '{lib,test}/**/*.ts'", "test": "nyc mocha -r ts-node/register test/*.spec.ts test/**/*.spec.ts", "coverage": "nyc --reporter=lcov mocha -r ts-node/register test/*.spec.ts test/**/*.spec.ts" }, "repository": { "type": "git", "url": "git+https://github.com/daign/daign-2d-pipeline.git" }, "author": "Jakob Mischek <jakob.mischek@daign.de> (https://github.com/daign)", "license": "MIT", "bugs": { "url": "https://github.com/daign/daign-2d-pipeline/issues" }, "homepage": "https://github.com/daign/daign-2d-pipeline#readme", "devDependencies": { "@types/chai": "^4.3.11", "@types/mocha": "^10.0.6", "@types/sinon": "^17.0.3", "chai": "^4.4.1", "mocha": "^10.3.0", "nyc": "^15.1.0", "sinon": "^17.0.1", "source-map-support": "^0.5.21", "ts-node": "^10.9.2", "tslint": "^6.1.3", "tslint-no-unused-expression-chai": "^0.1.4", "typescript": "~5.1.6" }, "dependencies": { "@daign/math": "^1.1.4", "@daign/observable": "^1.1.3" }, "nyc": { "include": [ "lib/**/*.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "sourceMap": true, "instrument": true } }