summaryrefslogtreecommitdiff
path: root/package.json
blob: b9fff311d06bfb2e597acf731d5f980a3f5d2f41 (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
{
  "name": "@life2/workspace",
  "version": "0.0.1",
  "description": "Workspace for the Life2 project",
  "private": true,
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/nc0fr/life2.git"
  },
  "bugs": {
    "url": "https://github.com/nc0fr/life2/issues"
  },
  "homepage": "https://github.com/nc0fr/life2#readme",
  "workspaces": [
    "life2/simulator"
  ],
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "fmt": "clang-format --dry-run life2/simulator/src/*.js",
    "fmt:fix": "clang-format -i life2/simulator/src/*.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "devDependencies": {
    "eslint": "8.57.0",
    "eslint-config-closure-es6": "0.1.1",
    "jsdoc": "4.0.2"
  }
}