-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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
44
45
46
47
48
49
50
{
"name": "@saji/life-counter",
"version": "1.0.0",
"author": {
"name": "Marek ‘saji’ Augustynowicz",
"email": "marek.aug@gmail.com"
},
"description": "Keep track on players’ life counts.",
"keywords": [
"counter",
"life",
"life-counter",
"spindown",
"magic-the-gathering"
],
"license": "ISC",
"main": "index.js",
"module": "index.js",
"directories": {},
"scripts": {
"dev": "npx browser-sync --port 5000 static --watch",
"start": "npx open-cli static/index.html",
"validate": "npm-run-all --parallel --print-name --aggregate-output test lint",
"test": "echo 'No tests (yet)'",
"lint": "npm-run-all --parallel --print-name --aggregate-output 'lint:*'",
"lint:js": "eslint --max-warnings=0 --ext=.js,.mjs,.cjs,.jsx,.ts,.tsx \"${@:-.}\"",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint:sh": "{ git grep -lE '^#!/bin/(ba|da|k)?sh' ':(exclude)*.*'; git ls-files '*.sh'; } | xargs --no-run-if-empty shellcheck",
"fix": "npm-run-all --silent --parallel --print-name --aggregate-output 'fix:*'",
"fix:js": "npm run --silent lint:js -- --fix",
"fix:css": "npm run --silent lint:css -- --fix"
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@saji/eslint-config": "^1.0.1",
"@saji/git-hooks": "^1.1.10",
"@saji/stylelint-config": "^1.0.1",
"eslint": "^7.27.0",
"shellcheck": "^1.0.0",
"stylelint": "^13.13.1"
},
"browserslist": [
"defaults",
"maintained node versions",
"last 4 versions",
"not dead"
]
}