-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.7 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.7 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@ui-js/web-components",
"version": "0.1.0",
"description": "A collection of UI components for the web",
"license": "MIT",
"funding": {
"type": "patreon",
"url": "https://patreon.com/arnog"
},
"repository": {
"type": "git",
"url": "https://github.com/ui-js/web-components.git"
},
"bugs": "https://github.com/ui-js/web-components/issues/",
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"dist": "bash ./scripts/build.sh production",
"lint": "eslint --fix src/",
"xo": "xo --prettier --fix src/",
"start": "bash ./scripts/build.sh watch",
"test": "bash ./scripts/test.sh",
"version": "bash ./scripts/version.sh",
"postversion": "bash ./scripts/github-release.sh"
},
"main": "./dist/web-components.js",
"module": "./dist/web-components.esm.js",
"types": "./dist/public/web-components.d.ts",
"files": [
"/dist"
],
"prettier": "@cortex-js/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged && bash ./scripts/pre-commit.sh",
"pre-push": "npm test"
}
},
"lint-staged": {
"/src/**/*.ts": [
"eslint --fix"
],
"/src/**/*.{ts,css,json,less}": [
"prettier --write"
],
"/*.md": [
"prettier --write"
]
},
"engines": {
"npm": ">=6.14.8",
"node": ">=12.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"maintained node versions",
"not dead"
],
"xo": {
"prettier": true,
"rules": {
"import/no-unassigned-import": "off",
"import/no-anonymous-default-export": "off",
"accessor-pairs": "off",
"no-negated-condition": "off",
"radix": "off",
"default-case": "off",
"no-anonymous-default-import": "off",
"eslint-comments/no-unused-disable": "warn",
"unicorn/no-abusive-eslint-disable": "off",
"unicorn/prefer-node-remove": "off",
"unicorn/no-reduce": "off",
"unicorn/prefer-query-selector": "off",
"unicorn/no-fn-reference-in-iterator": "off",
"unicorn/no-object-as-default-parameter": "off",
"unicorn/prefer-node-append": "off",
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/unified-signatures": "off",
"@typescript-eslint/array-type": "off",
"prefer-math-trunc": "off"
}
},
"author": "Arno Gourdol <arno@arno.org>",
"contributors": [],
"devDependencies": {
"@babel/types": "^7.12.12",
"@cortex-js/prettier-config": "^1.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@types/css-font-loading-module": "0.0.4",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@typescript-eslint/typescript-estree": "^4.14.0",
"autoprefixer": "^10.2.3",
"check-node-version": "^4.0.3",
"cssnano": "^4.1.10",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prettier": "^3.3.1",
"http-server": "^0.12.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-electron": "^0.1.11",
"jest-silent-reporter": "^0.4.0",
"less": "^4.1.0",
"lint-staged": "^10.5.3",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"xo": "^0.37.1"
},
"dependencies": {},
"keywords": [
"web components",
"ui"
]
}