-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.01 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
{
"name": "fatturazione-elettronica-aruba",
"version": "0.1.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"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",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"keywords": [],
"author": "Andrea Falzetti <andrea@falzetti.me>",
"license": "MIT",
"dependencies": {
"form-urlencoded": "^4.1.0",
"joi": "^14.0.6",
"lodash.merge": "^4.6.1",
"needle": "^2.4.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.1.13",
"@semantic-release/release-notes-generator": "^7.2.1",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"conventional-changelog": "^3.1.10",
"conventional-changelog-cli": "^2.0.23",
"coveralls": "^3.0.4",
"documentation": "^12.1.3",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.0.3",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^3.0.9",
"jest": "^24.1.0",
"prettier": "^1.19.1",
"semantic-release": "^15.13.31"
},
"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"
},
"husky": {
"hooks": {
"pre-push": "npm test && npm run version",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}