This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.74 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
74
{
"name": "vendure-webmaniabr-plugin",
"description": "📄 Plugin para Vendure para emitir NFe pelo Vendure usando Webmania BR",
"version": "0.0.0",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "git@github.com:jonyw4/vendure-webmaniabr-plugin.git",
"author": "Jonathan Célio <jonathan.clio@hotmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "tsc --watch",
"build": "rimraf lib && tsc",
"lint": "eslint --ext .ts,.tsx",
"lint:fix": "eslint --ext .ts,.tsx --fix",
"test": "npm run test:e2e",
"test:e2e": "rimraf e2e/__data__ && jest --config e2e/config/jest-config.js"
},
"peerDependencies": {
"@vendure/core": "~0.16.0"
},
"dependencies": {
"webmaniabr-js": "1.0.4"
},
"devDependencies": {
"@commitlint/config-conventional": "9.1.1",
"@types/jest": "26.0.4",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"@vendure/core": "0.16.1",
"@vendure/testing": "0.16.1",
"commitlint": "9.1.0",
"eslint": "7.4.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.1.0",
"ncp": "2.0.0",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"semantic-release": "17.1.1",
"ts-jest": "26.1.3",
"typescript": "4.0.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"release": {
"branches": [
"master"
]
}
}