-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "the-strat",
"description": "Resources, studies, layouts, scans, and more for thinkorswim.",
"version": "0.0.0",
"author": {
"name": "Michael Novotny",
"email": "[email protected]",
"url": "https://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/the-strat.git"
},
"keywords": [
"forex",
"futures",
"indicators",
"options",
"price-action",
"stocks",
"strategy",
"technical-analysis",
"thinkorswim",
"tos",
"trading-view"
],
"engines": {
"node": ">=12.20.0"
},
"scripts": {
"check": "npm-check -u",
"lint-staged": "lint-staged",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"test": "npm run prettier:check"
},
"git": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@vercel/git-hooks": "1.0.0",
"eslint": "8.8.0",
"eslint-config-get-off-my-lawn": "7.0.0",
"lint-staged": "12.3.3",
"npm-check": "5.9.2",
"prettier": "2.5.1",
"prettier-config-get-off-my-lawn": "1.0.0"
}
}