forked from elvisgs/sped-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.82 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 src",
"toc": "doctoc README.md --title **Conteúdo**",
"precommit": "npm test && npm run lint",
"prepush": "npm test && npm run lint",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">=4.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/elvisgs/sped-gen.git"
},
"keywords": [
"gerador",
"generator",
"sped"
],
"author": "Elvis Luciano Guimaraes <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/elvisgs/sped-gen/issues"
},
"homepage": "https://github.com/elvisgs/sped-gen#readme",
"dependencies": {
"handlebars": "^4.0.5",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"codecov": "^2.3.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"doctoc": "^1.3.0",
"eslint": "^3.1.1",
"husky": "^0.14.3",
"mocha": "^2.5.3",
"mocha-sinon": "^1.1.5",
"nodemon": "^1.9.2",
"nyc": "^11.2.1",
"rewire": "^2.5.2",
"rimraf": "^2.6.2",
"semantic-release": "^8.0.3",
"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
}
}