-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 928 Bytes
/
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
{
"name": "atoms-element",
"version": "3.0.0",
"description": "A simple web component library for defining your custom elements. It works on both client and server. It supports hooks and follows the same principles of react.",
"keywords": [
"pyros.sh",
"atoms-element",
"web component",
"custom element",
"server side rendering",
"client",
"server",
"react",
"lit-html"
],
"files": [
"lit-html.js",
"index.js",
"index.d.ts"
],
"license": "MIT",
"author": "pyros.sh",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"example": "node example/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"devDependencies": {
"jest": "^27.0.5"
},
"jest": {
"transform": {}
},
"prettier": {
"printWidth": 160,
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all"
}
}