37 lines
996 B
JSON
37 lines
996 B
JSON
{
|
|
"name": "snk",
|
|
"description": "Generates a snake game from a github user contributions grid",
|
|
"version": "3.0.0",
|
|
"private": true,
|
|
"repository": "github:platane/snk",
|
|
"devDependencies": {
|
|
"@sucrase/jest-plugin": "3.0.0",
|
|
"@types/jest": "29.5.3",
|
|
"@types/node": "16.18.38",
|
|
"jest": "29.6.1",
|
|
"prettier": "2.8.8",
|
|
"sucrase": "3.33.0",
|
|
"typescript": "5.1.6"
|
|
},
|
|
"workspaces": [
|
|
"packages/**"
|
|
],
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/__tests__/**/?(*.)+(spec|test).ts"
|
|
],
|
|
"transform": {
|
|
"\\.(ts|tsx)$": "@sucrase/jest-plugin"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"type": "tsc --noEmit",
|
|
"lint": "prettier -c '**/*.{ts,js,json,md,yml,yaml}' '!packages/*/dist/**' '!svg-only/dist/**'",
|
|
"test": "jest --verbose --no-cache",
|
|
"dev:demo": "( cd packages/demo ; npm run dev )",
|
|
"build:demo": "( cd packages/demo ; npm run build )",
|
|
"build:action": "( cd packages/action ; npm run build )"
|
|
}
|
|
}
|