graphics-ts
Version:
A porting of purescript-{canvas, free-canvas, drawing} featuring fp-ts
80 lines (79 loc) • 2.33 kB
JSON
{
"name": "graphics-ts",
"version": "1.1.0",
"description": "A porting of purescript-{canvas, free-canvas, drawing} featuring fp-ts",
"files": [
"lib",
"es6"
],
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint -p .",
"jest-clear-cache": "jest --clearCache",
"jest": "jest --ci",
"prettier": "prettier --list-different \"./{src,test,example}/**/*.ts\"",
"fix-prettier": "prettier --write \"./{src,test,example}/**/*.ts\"",
"test": "npm run lint && npm run prettier && npm run jest-clear-cache && npm run jest",
"clean": "rimraf lib/* es6/*",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && npm run import-path-rewrite",
"postbuild": "prettier --write \"./{lib,es6}/**/*.ts\"",
"start": "webpack-dev-server --config=example/webpack.config.js",
"docs": "docs-ts",
"import-path-rewrite": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/graphics-ts.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/graphics-ts/issues"
},
"homepage": "https://github.com/gcanti/graphics-ts",
"dependencies": {},
"peerDependencies": {
"fp-ts": "^2.6.1",
"fp-ts-contrib": "^0.1.15"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.1",
"docs-ts": "^0.5.1",
"fp-ts": "^2.6.1",
"fp-ts-contrib": "^0.1.15",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.3.0",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.2.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.4",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"tslint-immutable": "^6.0.1",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"tags": [
"typescript",
"functional-programming",
"html-canvas",
"canvas"
],
"keywords": [
"typescript",
"functional-programming",
"html-canvas",
"canvas"
]
}