-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "@gw2efficiency/recipe-calculation",
"description": "Calculate the cheapest tree traversal, price and used items of crafting recipes",
"version": "3.5.6",
"main": "dist/src/index.js",
"license": "MIT",
"repository": {
"url": "https://github.com/gw2efficiency/recipe-calculation"
},
"scripts": {
"test": "jest",
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"lint": "eslint --ignore-path='.gitignore' '{src,tests}/**/*.ts'",
"build": "rm -rf dist/ && tsc",
"preversion": "yarn build"
},
"eslintConfig": {
"extends": "@devoxa"
},
"prettier": "@devoxa/prettier-config",
"devDependencies": {
"@devoxa/eslint-config": "2.0.5",
"@devoxa/flocky": "^1.3.1",
"@devoxa/prettier-config": "1.0.0",
"@gw2efficiency/recipe-nesting": "^3.2.0",
"@types/jest": "27.0.1",
"@types/node": "15.12.5",
"eslint": "7.32.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"ts-jest": "27.0.4",
"typescript": "4.3.5"
},
"publishConfig": {
"access": "public"
}
}