This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.46 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
{
"name": "node-siba",
"version": "0.0.4",
"description": "Utility library that creates a SIBA webservice request without coupling with HTTP/SOAP clients.",
"author": "Rafael Pinto <meuemail@posteo.pt>",
"license": "MIT",
"url": "https://github.com/rafaelrpinto/node-siba",
"bugs": {
"url": "https://github.com/rafaelrpinto/node-siba/issues",
"email": "meuemail@posteo.pt"
},
"repository": {
"type": "git",
"url": "https://github.com/rafaelrpinto/node-siba.git"
},
"engines": {
"node": ">=6.0.0"
},
"main": "dist/index.js",
"types": "src/types.ts",
"scripts": {
"build": "rm -rf ./dist && ./node_modules/typescript/bin/tsc",
"test": "jest",
"test-ci": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn run build && git add . && yarn test"
}
},
"devDependencies": {
"@types/jest": "^23.3.13",
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"node-fetch": "^2.3.0",
"prettier": "^1.16.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
},
"dependencies": {
"@types/node": "^10.12.18",
"xml-js": "^1.6.9"
},
"files": [
"dist/",
"src/"
],
"keywords": [
"SIBA",
"SEF",
"alojamento-local",
"portugal",
"accomodation-bulletin"
]
}