-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.97 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
{
"name": "ios-calculator-for-web",
"version": "1.2.14",
"description": "This is a calculator for the web following the design of the iOS-Calculator.",
"keywords": [
"calculator",
"javascript",
"webcomponent",
"custom-element"
],
"homepage": "https://henkebyte.com/ios-calculator",
"bugs": {
"url": "https://github.com/manuelhenke/ios-calculator-for-web/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuelhenke/ios-calculator-for-web.git"
},
"license": "MIT",
"author": {
"name": "Manuel Henke",
"email": "contact@henkebyte.com",
"url": "https://henkebyte.com/"
},
"type": "module",
"main": "src/ios-calculator.js",
"module": "src/ios-calculator.js",
"browser": "dist/ios-calculator.js",
"files": [
"dist"
],
"scripts": {
"analyze": "cem analyze",
"build": "webpack && yarn analyze --exclude dist",
"lint": "yarn lint:js && yarn lint:style && yarn lint:prettier",
"lint:js": "eslint --ext \".js\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint:style": "stylelint \"**/*.{css,scss,sass,html}\" --ignore-path .gitignore",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix && yarn lint:style --fix",
"prepare": "husky install",
"test": "web-test-runner --coverage",
"test:watch": "web-test-runner --watch"
},
"browserslist": [
"last 4 version"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.18.10",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@custom-elements-manifest/analyzer": "^0.8.3",
"@open-wc/eslint-config": "^8.0.2",
"@open-wc/testing": "^3.0.4",
"@web/test-runner": "0.15.1",
"autoprefixer": "^10.4.2",
"babel-loader": "^9.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.9.0",
"eslint-config-airbnb-babel": "^0.2.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-lit": "^1.3.0",
"eslint-plugin-lit-a11y": "^2.2.2",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-wc": "^1.3.2",
"html-loader": "^4.1.0",
"husky": "^8.0.1",
"postcss": "^8.4.4",
"postcss-html": "^1.5.0",
"postcss-loader": "^7.0.1",
"prettier": "^2.5.1",
"sass": "^1.49.8",
"sass-loader": "^13.0.2",
"stylelint": "^14.5.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^6.0.0",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^5.0.1"
},
"customElements": "custom-elements.json"
}