forked from pinkhominid/context-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@kuscamara/context-provider",
"version": "1.0.2",
"description": "A Consumer and context Provider for Web Components",
"main": "src/index.js",
"module": "src/index.js",
"files": [
"src"
],
"keywords": [
"web-component",
"consumer",
"provider",
"context"
],
"author": {
"email": "kus.camara@gmail.com",
"name": "Kus Cámara"
},
"repository": {
"type": "git",
"url": "https://github.com/kcmr/context-provider"
},
"license": "MIT",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false",
"lint:eslint": "eslint --ext .js . --max-warnings 0 --ignore-path .gitignore",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "prettier --write \"**/*.js\" --ignore-path .gitignore",
"format": "npm run format:eslint && npm run format:prettier"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@open-wc/eslint-config": "3.0.0",
"@open-wc/testing": "2.5.29",
"@open-wc/testing-karma": "4.0.8",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"lit-element": "2.4.0",
"lit-html": "1.3.0",
"prettier": "2.0.5",
"semantic-release": "17.2.3",
"sinon": "9.1.0",
"snowpack": "2.13.0",
"webpack-merge": "5.1.4"
},
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "prettier --write",
"*.js": [
"eslint --max-warnings 0",
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git"
],
"defaultBranch": "main",
"branches": [
"main"
],
"tagFormat": "${version}"
},
"publishConfig": {
"access": "public"
}
}