-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
{
"name": "iugu-node-sdk",
"version": "0.1.2",
"description": "Biblioteca não-oficial da API Iugu para Node.js feita em Typescript",
"main": "lib/iugu.js",
"types": "lib/iugu.d.ts",
"scripts": {
"test": "jest --no-cache --detectOpenHandles",
"doc": "npx typedoc --out ./docs --mode file ./lib",
"build": "npx tsc -p ./tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/V1pi/iugu-node-sdk.git"
},
"bugs:": "https://github.com/V1pi/iugu-node-sdk/issues",
"keywords": [
"iugu",
"sdk",
"typescript"
],
"files": [
"lib"
],
"author": {
"name": "Vinicius Picanco",
"email": "viniciusspicanco@gmail.com"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/parser": "^7.8.4",
"@babel/types": "^7.8.3",
"@types/axios": "^0.14.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.2.2",
"jest-diff": "^25.1.0",
"pretty-format": "^25.1.0",
"ts-jest": "^29.0.3",
"typedoc": "^0.23.19",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^0.21.1"
}
}