-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 936 Bytes
/
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": "game-of-life-js",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "func() { node --experimental-modules ./src/GameOfLife.js }; func",
"test": "func() { node --experimental-vm-modules node_modules/jest/bin/jest.js jest ./tests/ --verbose; }; func",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js jest ./tests/ --watchAll"
},
"jshintConfig": {
"esversion": 11
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$",
"transform": {}
},
"keywords": [],
"author": "Simon Berner",
"license": "MIT",
"bugs": {
"url": "https://github.com/simonberner/game-of-life-js/issues"
},
"homepage": "https://github.com/simonberner/game-of-life-js#readme",
"devDependencies": {
"jest": "^29.7.0",
"jshint": "^2.13.6"
},
"dependencies": {
"p5": "^1.9.4"
}
}