-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.42 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.42 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "dota-grid-cli",
"version": "1.0.1",
"description": "A cli for modifying DotA grid config files",
"bin": {
"dota-grid-cli": "./bin/index.js"
},
"files": [
"bin",
"package.json"
],
"scripts": {
"prebuild": "npm run clean",
"build": "babel src --out-dir bin --extensions \".ts,.tsx\" --ignore \"**/*.test.ts\" --source-maps inline",
"clean": "rimraf bin",
"cli": "node ./bin/index.js",
"eslint": "eslint .",
"eslint-check": "npm run eslint",
"eslint-fix": "npm run eslint -- --fix",
"prettier": "prettier .",
"prettier-check": "npm run prettier -- --check",
"prettier-fix": "npm run prettier -- --write",
"test": "jest",
"type-check": "tsc --noEmit",
"watch:type-check": "npm run type-check -- --watch --preserveWatchOutput",
"watch:build": "npm run build -- --watch",
"watch": "npm-run-all --parallel --print-label watch:type-check watch:build"
},
"repository": {
"type": "git",
"url": "https://github.com/tvelich/dota-grid-cli"
},
"keywords": [
"dota",
"grid",
"cli",
"sort",
"opendota"
],
"author": "Thomas Velich",
"license": "MIT",
"bugs": {
"url": "https://github.com/tvelich/dota-grid-cli/issues"
},
"homepage": "https://github.com/tvelich/dota-grid-cli#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@babel/runtime": "^7.12.13",
"abort-controller": "^3.0.0",
"commander": "^6.2.1",
"node-fetch": "^2.6.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"npm run prettier-check"
],
"**/*.{js,ts,json}": [
"npm run eslint-check"
]
}
}