-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "hargreaves-lansdown",
"version": "0.0.5",
"description": "An unofficial API to programatically access your Hargreaves Lansdown account",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/types",
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts",
"test": "jest --max-workers=4",
"test:watch": "jest --watch --max-workers=4",
"release": "standard-version --releaseCommitMessageFormat='chore(release): {{currentTag}} 🚀 [skip ci]'",
"postrelease": "git push --follow-tags origin master"
},
"author": "Jamie Haywood <https://github.com/jamiehaywood>",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"got": "^11.0.0",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-json": "^4.1.0",
"@types/cheerio": "^0.22.21",
"@types/got": "^9.6.11",
"@types/jest": "latest",
"dotenv": "latest",
"husky": "^4.3.0",
"jest": "latest",
"rimraf": "^3.0.2",
"rollup": "^2.26.4",
"rollup-plugin-dts": "^1.4.13",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"standard-version": "^9.0.0",
"ts-jest": "latest",
"ts-node": "latest",
"typescript": "latest"
}
}