summaryrefslogtreecommitdiff
path: root/life2/format/package.json
blob: 506eded31b2786fadd33d6d4eec00311b1af8dc7 (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
{
    "name": "@life2/format",
    "version": "1.0.0",
    "description": "Textual representation format of a Life2 board state.",
    "keywords": [
        "cellular",
        "automaton",
        "game",
        "life"
    ],
    "homepage": "https://github.com/nc0fr/life2/tree/master/life2/format#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/format"
    },
    "files": [
        "LICENSE",
        "README.md",
        "index.js"
    ],
    "main": "./index.js",
    "readme": "README.md",
    "scripts": {
        "lint": "eslint .",
        "lint-fix": "eslint --fix .",
        "fmt": "clang-format -i *.js",
        "fmt-check": "clang-format --dry-run --Werror *.js"
    },
    "dependencies": {
        "@life2/game": "1.0.0"
    }
}