-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1003 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1003 Bytes
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
{
"name": "@deutschesoft/awml",
"version": "2.4.12",
"description": "A templating language for aux-widgets.",
"exports": {
".": {
"browser": {
"types": "./src/index.browser.d.ts",
"import": "./src/index.browser.js"
},
"types": "./src/index.node.d.ts",
"import": "./src/index.node.js"
},
"./src/*": "./src/*"
},
"type": "module",
"directories": {},
"scripts": {
"format": "npx prettier --write .",
"test": "node --test tests/run.tests.js",
"lint": "npx eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/DeutscheSoft/AWML.git"
},
"sideEffects": [
"./src/index.sideeffects.js",
"./src/custom_elements.js",
"./src/options/*.registration.js",
"./src/backends/*.registration.js",
"./src/components/*.element.js",
"*.element.js",
"*.registration.js",
"index.sideeffects.js",
"custom_elements.js"
],
"author": "Arne Goedeke",
"license": "GPL-2.0-only"
}