-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "sliding-puzzle",
"version": "1.0.0",
"description": "Base classes and game logic for creating a sliding puzzle. Inspired by the puzzles of 'Professor Layton' and 'Rush Hour'.",
"main": "dist/sliding-puzzle.js",
"types": "dist/*.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"format": "npx prettier --write .",
"doc": "npx typedoc --theme minimal --readme README.md --out doc src/**"
},
"keywords": [
"sliding",
"puzzle",
"blocks",
"layton",
"red",
"car"
],
"author": "Loic Bertrand",
"license": "MIT",
"devDependencies": {
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"typedoc": "^0.20.11",
"rollup": "^2.36.1",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "https://github.com/lobertrand/sliding-puzzle.git"
}
}