-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.04 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
{
"name": "stratox",
"version": "3.3.0",
"description": "JavaScript template library designed for the effortless creation of component, views and user interfaces (UI).",
"type": "module",
"main": "src/index.js",
"directories": {
"src": "src"
},
"scripts": {
"test": "vitest run",
"test:dev": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "https://github.com/stratoxjs/stratox.git"
},
"bugs": {
"url": "https://stratox.wazabii.se/issues",
"email": "daniel.ronkainen@wazabii.se"
},
"homepage": "https://stratox.wazabii.se/v/stratox.js",
"keywords": [
"javascript",
"template",
"library",
"agnostic",
"module",
"component",
"modern",
"views",
"templates",
"customtags",
"forms",
"fields",
"formbuilder"
],
"author": "Daniel Ronkainen",
"license": "Apache-2.0",
"devDependencies": {
"@eslint/js": "^9.18.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"vitest": "^2.1.8"
}
}