-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.78 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
70
71
72
73
{
"name": "sped-gen",
"version": "0.0.0-development",
"description": "Gerador de código baseado em metadados do SPED",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "nyc mocha",
"test:watch": "nodemon -w . -d 0 --exec npm test",
"coverage": "nyc report --reporter=lcov",
"postcoverage": "codecov",
"lint": "eslint index.js lib/",
"toc": "doctoc README.md --title **Conteúdo**",
"precommit": "npm test && npm run lint",
"prepush": "npm test && npm run lint",
"commitmsg": "validate-commit-msg",
"release": "semantic-release"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/elvisgs/sped-gen.git"
},
"keywords": [
"gerador",
"generator",
"sped"
],
"author": "Elvis Luciano Guimaraes <elvis.gs@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/elvisgs/sped-gen/issues"
},
"homepage": "https://github.com/elvisgs/sped-gen#readme",
"dependencies": {
"handlebars": "^4.1.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"codecov": "^3.2.0",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.0.0",
"doctoc": "^1.3.0",
"eslint": "^5.14.1",
"husky": "^0.14.3",
"mocha": "^6.0.2",
"mocha-sinon": "^1.1.5",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"rewire": "^2.5.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.13.4",
"should": "^10.0.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.4",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100
}
}