-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "sudoku",
"version": "0.1.3",
"description": "Sudoku is a logic-based, combinatorial number-placement puzzle.",
"author": "Mark <mark@remarkablemark.org>",
"contributors": [
"Scott Weaver <scottmweaver@gmail.com>"
],
"scripts": {
"build": "preact-scripts build",
"clean": "rm -rf build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"deploy": "npm run clean && npm run build && gitploy build gh-pages",
"eject": "preact-scripts eject",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"release": "standard-version --no-verify",
"start": "preact-scripts start"
},
"homepage": "https://remarkablegames.org/sudoku/",
"repository": {
"type": "git",
"url": "https://github.com/remarkablegames/sudoku"
},
"bugs": {
"url": "https://github.com/remarkablegames/sudoku/issues"
},
"keywords": [
"sudoku",
"puzzle",
"logic",
"number",
"game"
],
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"eslint": "^3.19.0",
"eslint-plugin-prettier": "^2.4.0",
"gitploy": "^0.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"marked": "^0.3.17",
"preact": "^8.2.7",
"preact-scripts": "0.3.0-alpha",
"prettier": "^1.11.1",
"standard-version": "^4.3.0"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=8",
"npm": ">=5.3"
},
"private": true,
"license": "MIT"
}