-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 2.02 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
{
"name": "fatturazione-elettronica-aruba",
"version": "0.4.0",
"description": "",
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "jest --watch",
"lint": "eslint . || (echo \"Some errors may be fixable with \\`npm run lint-fix\\`\". && exit 1)",
"lint:fix": "eslint . --fix",
"generate-doc": "documentation readme ./lib/index.js --section=API --shallow",
"build": "esbuild lib/index.js --bundle --outfile=dist/index.js --platform=node",
"release": "semantic-release"
},
"keywords": [],
"author": "Andrea Falzetti <[email protected]>",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^17.1.1",
"form-urlencoded": "^4.1.3",
"joi": "^17.1.1",
"lodash.merge": "^4.6.2",
"needle": "^2.3.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.1",
"documentation": "^13.2.5",
"esbuild": "^0.12.19",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4"
},
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/andreafalzetti/node-fatturazione-elettronica-aruba"
},
"bugs": {
"url": "https://github.com/andreafalzetti/node-fatturazione-elettronica-aruba/issues"
}
}