2019-08-03 07:41:36 -04:00
{
"name" : "javascript-tri-peaks-solitaire-solver" ,
2022-09-08 06:44:01 -04:00
"version" : "1.0.1" ,
2022-09-08 06:58:31 -04:00
"description" : "A brute force solver for tri peaks solitaire written in javascript. Forked from work by Courtney Pitcher at https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver" ,
"keywords" : [
"tripeaks" ,
"solitaire" ,
"game" ,
"solver" ,
"cards"
] ,
2019-08-03 07:41:36 -04:00
"main" : "solver.js" ,
"scripts" : {
2022-09-10 14:13:49 -04:00
"dev" : "vite" ,
"build" : "vite build" ,
"preview" : "vite preview" ,
2022-09-07 08:29:18 -04:00
"test" : "mocha" ,
2022-09-10 14:13:49 -04:00
"lint" : "eslint --ext .js,.html --ignore-path .gitignore --fix ." ,
2022-09-07 08:37:57 -04:00
"format" : "prettier . --write"
2019-08-03 07:41:36 -04:00
} ,
"repository" : {
"type" : "git" ,
2022-09-08 06:44:01 -04:00
"url" : "git+https://github.com/apiontek/javascript-tri-peaks-solitaire-solver.git"
2019-08-03 07:41:36 -04:00
} ,
2022-09-08 06:58:31 -04:00
"author" : {
"name" : "Adam Piontek" ,
"email" : "adam@73k.us" ,
"url" : "https://73k.us/"
} ,
2019-08-03 07:41:36 -04:00
"license" : "ISC" ,
"bugs" : {
2022-09-08 06:44:01 -04:00
"url" : "https://github.com/apiontek/javascript-tri-peaks-solitaire-solver/issues"
2019-08-03 07:41:36 -04:00
} ,
2022-09-08 06:44:01 -04:00
"homepage" : "https://github.com/apiontek/javascript-tri-peaks-solitaire-solver#readme" ,
2019-08-03 07:41:36 -04:00
"devDependencies" : {
2022-09-10 14:13:49 -04:00
"alpinejs" : "^3.10.3" ,
"bootstrap" : "^5.2.1" ,
2022-09-07 08:29:18 -04:00
"eslint" : "^8.23.0" ,
2022-09-07 08:37:57 -04:00
"eslint-config-prettier" : "^8.5.0" ,
2022-09-10 14:13:49 -04:00
"eslint-plugin-html" : "^7.1.0" ,
2022-09-07 08:37:57 -04:00
"mocha" : "^10.0.0" ,
2022-09-10 14:13:49 -04:00
"prettier" : "^2.7.1" ,
"sass" : "^1.54.9" ,
"vite" : "^3.1.0"
2019-08-03 07:41:36 -04:00
}
}