-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.49 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
67
{
"name": "@fabienjuif/astar",
"version": "0.2.0",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/fabienjuif/astar",
"repository": "github:fabienjuif/astar",
"bugs": "https://github.com/fabienjuif/astar/issues",
"author": "Fabien JUIF <[email protected]>",
"scripts": {
"test": "jest",
"lint": "eslint --cache \"**/*.js\"",
"format": "prettier \"**/*.{ts,tsx,js,jsx,md,json}\" --write",
"ci:check": "prettier \"**/*.{ts,tsx,js,jsx,md,json}\" --check",
"ci": "run-p lint test ci:*"
},
"dependencies": {},
"keywords": [
"astar",
"a*",
"A",
"algogithm",
"video-game",
"game",
"shortest-path",
"shortest",
"path"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"eslint": "^7.3.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": ">=4.2.5",
"jest": "^26.1.0",
"lint-staged": ">=10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"semi": "off",
"no-plusplus": "off",
"no-continue": "off"
}
}
}