-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "up-bank-api",
"version": "1.5.2",
"description": "The Up Bank API TypeScript wrapper",
"main": "dist/bundle.js",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.umd.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "./scripts/build.sh",
"dev": "./scripts/dev.sh",
"lint": "eslint src",
"fix": "eslint src --fix",
"test": "jest --passWithNoTests",
"release": "np --no-publish"
},
"repository": "git://github.com/ndench/up-bank-api.git",
"keywords": [
"up",
"banking",
"upbank"
],
"author": "Nathan Dench <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ndench/up-bank-api/issues"
},
"homepage": "https://github.com/ndench/up-bank-api#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^0.21.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint src --fix"
]
},
"devDependencies": {
"@types/faker": "^5.1.3",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"dts-bundle": "^0.7.3",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"np": "^7.6.2",
"prettier": "^2.1.2",
"rollup": "^2.26.9",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}