-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.32 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
{
"name": "br-validate-dfe-access-key",
"version": "0.1.0",
"author": "Vinicius Marchesin Araujo",
"description": "Um validador de chave de acesso de DFes (Documentos Fiscais eletrônicos)",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"babel": "babel src/index.js",
"build": "webpack --mode production",
"lint": "eslint src/*",
"mocha": "mocha --require @babel/register",
"test": "nyc --reporter=html mocha --require @babel/register -- src/*"
},
"keywords": [
"chave-de-acesso",
"dfe",
"nfe",
"cte",
"sefaz",
"validation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vmarchesin/br-validate-access-key.git"
},
"bugs": {
"url": "https://github.com/vmarchesin/br-validate-access-key/issues"
},
"homepage": "https://github.com/vmarchesin/br-validate-access-key#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"undefined": "^0.1.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
}
}