-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 1.85 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 1.85 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
90
91
92
93
94
95
{
"name": "firstrade-cli",
"version": "0.6.8",
"description": "An unofficial CLI tool for Firstrade. The CLI manages your stocks on Firstrade.",
"homepage": "https://github.com/LLLLinda/firstrade-cli#readme",
"author": {
"name": "LLLLinda",
"email": "lindacheung512@gmail.com"
},
"bin": {
"firstrade": "./bin/firstrade"
},
"files": [
"lib/*.js",
"index.d.ts"
],
"types": "index.d.ts",
"main": "index.js",
"keywords": [
"firstrade cli"
],
"dependencies": {
"axios": "^0.21.1",
"axios-cookiejar-support": "^1.0.1",
"qs": "^6.9.6",
"tough-cookie": "^4.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"dotenv": "^8.2.0",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"prettier": "^1.19.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-config-xo": "^0.27.2",
"jest": "^26.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LLLLinda/firstrade-cli.git"
},
"bugs": {
"url": "https://github.com/LLLLinda/firstrade-cli/issues"
},
"engines": {
"npm": ">= 4.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest -i"
},
"jest": {
"testEnvironment": "node",
"testTimeout": 30000,
"collectCoverage": true,
"coverageReporters": [
"lcov"
]
},
"license": "Apache-2.0"
}