-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "nine-mens-morris",
"version": "2.4.0",
"description": "Nine Men's Morris game implementation + AI using min-max algorithm and alpha-beta pruning.",
"main": "index.js",
"scripts": {
"start": "parcel index.html && parcel watch index.html",
"build": "parcel build index.html --public-url ./",
"deploy": "npm run build && npm version patch && cd dist && git add . && git commit -am 'Add files' && git push",
"deploy:minor": "npm run build && npm version minor && cd dist && git add . && git commit -am 'Add files' && git push",
"deploy:major": "npm run build && npm version major && cd dist && git add . && git commit -am 'Add files' && git push",
"postdeploy": "git push"
},
"keywords": [
"nine-mens-morris",
"ai",
"min-max",
"pwr"
],
"author": "github.com/grudus",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.0",
"typescript": "^3.4.4"
},
"dependencies": {}
}