-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 1.65 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
69
{
"name": "nubank-api",
"version": "3.1.1",
"description": "Yet another Nubank API connector",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint && npm run format && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"version": "git add -A src && git add -A lib",
"example": "ts-node examples/$NAME.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fmsouza/nubank-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fmsouza/nubank-api/issues"
},
"homepage": "https://github.com/fmsouza/nubank-api#readme",
"dependencies": {
"axios": "^1.4.0",
"node-forge": "^1.3.1"
},
"peerDependencies": {
"uuid": ">3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@types/node-forge": "^1.3.2",
"@types/uuid": "^9.0.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
}
}