summaryrefslogtreecommitdiff
path: root/life2/simulator/package.json
blob: 7dcf932fac563e9da89b5b857ea5fe31abcb0490 (plain)
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
44
45
46
47
48
49
50
51
52
53
54
{
    "name": "@life2/simulator",
    "version": "1.0.0",
    "description": "Web application to simulate Life2 games",
    "private": true,
    "keywords": [
        "cellular",
        "automaton",
        "game",
        "life"
    ],
    "homepage": "https://github.com/nc0fr/life2/tree/master/life2/simulator#readme",
    "bugs": {
        "url": "https://github.com/nc0fr/life2/issues",
        "email": "n@nc0.fr"
    },
    "license": "Apache-2.0",
    "author": "The Life2 Authors",
    "contributors": [
        "Nicolas Paul <n@nc0.fr> (https://nc0.fr)"
    ],
    "funding": {
        "type": "individual",
        "url": "https://github.com/sponsors/nc0fr"
    },
    "browser": true,
    "repository": {
        "type": "git",
        "url": "https://github.com/nc0fr/life2.git",
        "directory": "life2/simulator"
    },
    "files": [
        "LICENSE",
        "README"
    ],
    "main": "./index.js",
    "readme": "README",
    "scripts": {
        "test": "exit 0",
        "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
        "lint-fix": "eslint --fix .",
        "fmt": "clang-format -i *.js",
        "fmt-check": "clang-format --dry-run --Werror *.js",
        "build": "webpack"
    },
    "dependencies": {
        "@life2/format": "1.0.0",
        "@life2/game": "1.0.0"
    },
    "devDependencies": {
        "webpack": "5.90.3",
        "webpack-cli": "5.1.4"
    }
}