-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
{
"name": "game-of-life",
"version": "2.0.0",
"description": "The Game of life implementation",
"source": "src/index.html",
"scripts": {
"start": "parcel",
"build": "./scripts/build.sh",
"lint": "eslint .",
"test": "eslint . && jest .",
"perf": "ts-node perf/index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/andre487/game-of-life.git"
},
"keywords": [
"game-of-life"
],
"author": "andre487",
"license": "MIT",
"bugs": {
"url": "https://github.com/andre487/game-of-life/issues"
},
"homepage": "https://github.com/andre487/game-of-life#readme",
"devDependencies": {
"@parcel/transformer-typescript-tsc": "^2.11.0",
"@types/benchmark": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"benchmark": "^2.1.4",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.11.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.3.3"
}
}