deckbuilder
Version:
A deck building and management tool any card based games in the browser or Node.
49 lines (48 loc) • 1.4 kB
JSON
{
"name": "deckbuilder",
"version": "1.1.2",
"description": "A deck building and management tool any card based games in the browser or Node.",
"main": "index.js",
"module": "deckbuilder.js",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "rollup -c",
"bundle:watch": "rollup -c --watch",
"test": "mocha"
},
"types": "lib/index.d.ts",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "TODO"
},
"keywords": [
"card",
"cards",
"deck",
"builder",
"building",
"game",
"games"
],
"author": "Robert Corponoi",
"license": "MIT"
}